1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#ifndef _LINUX_JBD2_H
17#define _LINUX_JBD2_H
18
19
20#ifndef __KERNEL__
21#include "jfs_compat.h"
22#define JBD2_DEBUG
23#define jfs_debug jbd_debug
24#else
25
26#include <linux/types.h>
27#include <linux/buffer_head.h>
28#include <linux/journal-head.h>
29#include <linux/stddef.h>
30#include <linux/bit_spinlock.h>
31#include <linux/mutex.h>
32#include <linux/timer.h>
33#endif
34
35#define journal_oom_retry 1
36
37
38
39
40
41
42
43
44#undef JBD2_PARANOID_IOFAIL
45
46
47
48
49#define JBD2_DEFAULT_MAX_COMMIT_AGE 5
50
51#ifdef CONFIG_JBD2_DEBUG
52
53
54
55
56
57#define JBD2_EXPENSIVE_CHECKING
58extern u8 jbd2_journal_enable_debug;
59
60#define jbd_debug(n, f, a...) \
61 do { \
62 if ((n) <= jbd2_journal_enable_debug) { \
63 printk (KERN_DEBUG "(%s, %d): %s: ", \
64 __FILE__, __LINE__, __func__); \
65 printk (f, ## a); \
66 } \
67 } while (0)
68#else
69#define jbd_debug(f, a...)
70#endif
71
72static inline void *jbd2_alloc(size_t size, gfp_t flags)
73{
74 return (void *)__get_free_pages(flags, get_order(size));
75}
76
77static inline void jbd2_free(void *ptr, size_t size)
78{
79 free_pages((unsigned long)ptr, get_order(size));
80};
81
82#define JBD2_MIN_JOURNAL_BLOCKS 1024
83
84#ifdef __KERNEL__
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103typedef struct handle_s handle_t;
104
105
106
107
108
109
110
111
112
113
114
115
116
117typedef struct journal_s journal_t;
118#endif
119
120
121
122
123
124#define JBD2_MAGIC_NUMBER 0xc03b3998U
125
126
127
128
129
130
131
132
133
134#define JBD2_DESCRIPTOR_BLOCK 1
135#define JBD2_COMMIT_BLOCK 2
136#define JBD2_SUPERBLOCK_V1 3
137#define JBD2_SUPERBLOCK_V2 4
138#define JBD2_REVOKE_BLOCK 5
139
140
141
142
143typedef struct journal_header_s
144{
145 __be32 h_magic;
146 __be32 h_blocktype;
147 __be32 h_sequence;
148} journal_header_t;
149
150
151
152
153#define JBD2_CRC32_CHKSUM 1
154#define JBD2_MD5_CHKSUM 2
155#define JBD2_SHA1_CHKSUM 3
156
157#define JBD2_CRC32_CHKSUM_SIZE 4
158
159#define JBD2_CHECKSUM_BYTES (32 / sizeof(u32))
160
161
162
163struct commit_header {
164 __be32 h_magic;
165 __be32 h_blocktype;
166 __be32 h_sequence;
167 unsigned char h_chksum_type;
168 unsigned char h_chksum_size;
169 unsigned char h_padding[2];
170 __be32 h_chksum[JBD2_CHECKSUM_BYTES];
171 __be64 h_commit_sec;
172 __be32 h_commit_nsec;
173};
174
175
176
177
178
179
180
181typedef struct journal_block_tag_s
182{
183 __be32 t_blocknr;
184 __be32 t_flags;
185 __be32 t_blocknr_high;
186} journal_block_tag_t;
187
188#define JBD2_TAG_SIZE32 (offsetof(journal_block_tag_t, t_blocknr_high))
189#define JBD2_TAG_SIZE64 (sizeof(journal_block_tag_t))
190
191
192
193
194
195typedef struct jbd2_journal_revoke_header_s
196{
197 journal_header_t r_header;
198 __be32 r_count;
199} jbd2_journal_revoke_header_t;
200
201
202
203#define JBD2_FLAG_ESCAPE 1
204#define JBD2_FLAG_SAME_UUID 2
205#define JBD2_FLAG_DELETED 4
206#define JBD2_FLAG_LAST_TAG 8
207
208
209
210
211
212typedef struct journal_superblock_s
213{
214
215 journal_header_t s_header;
216
217
218
219 __be32 s_blocksize;
220 __be32 s_maxlen;
221 __be32 s_first;
222
223
224
225 __be32 s_sequence;
226 __be32 s_start;
227
228
229
230 __be32 s_errno;
231
232
233
234 __be32 s_feature_compat;
235 __be32 s_feature_incompat;
236 __be32 s_feature_ro_compat;
237
238 __u8 s_uuid[16];
239
240
241 __be32 s_nr_users;
242
243 __be32 s_dynsuper;
244
245
246 __be32 s_max_transaction;
247 __be32 s_max_trans_data;
248
249
250 __u32 s_padding[44];
251
252
253 __u8 s_users[16*48];
254
255} journal_superblock_t;
256
257#define JBD2_HAS_COMPAT_FEATURE(j,mask) \
258 ((j)->j_format_version >= 2 && \
259 ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask))))
260#define JBD2_HAS_RO_COMPAT_FEATURE(j,mask) \
261 ((j)->j_format_version >= 2 && \
262 ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask))))
263#define JBD2_HAS_INCOMPAT_FEATURE(j,mask) \
264 ((j)->j_format_version >= 2 && \
265 ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
266
267#define JBD2_FEATURE_COMPAT_CHECKSUM 0x00000001
268
269#define JBD2_FEATURE_INCOMPAT_REVOKE 0x00000001
270#define JBD2_FEATURE_INCOMPAT_64BIT 0x00000002
271#define JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT 0x00000004
272
273
274#define JBD2_KNOWN_COMPAT_FEATURES JBD2_FEATURE_COMPAT_CHECKSUM
275#define JBD2_KNOWN_ROCOMPAT_FEATURES 0
276#define JBD2_KNOWN_INCOMPAT_FEATURES (JBD2_FEATURE_INCOMPAT_REVOKE | \
277 JBD2_FEATURE_INCOMPAT_64BIT | \
278 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)
279
280#ifdef __KERNEL__
281
282#include <linux/fs.h>
283#include <linux/sched.h>
284
285#define J_ASSERT(assert) BUG_ON(!(assert))
286
287#if defined(CONFIG_BUFFER_DEBUG)
288void buffer_assertion_failure(struct buffer_head *bh);
289#define J_ASSERT_BH(bh, expr) \
290 do { \
291 if (!(expr)) \
292 buffer_assertion_failure(bh); \
293 J_ASSERT(expr); \
294 } while (0)
295#define J_ASSERT_JH(jh, expr) J_ASSERT_BH(jh2bh(jh), expr)
296#else
297#define J_ASSERT_BH(bh, expr) J_ASSERT(expr)
298#define J_ASSERT_JH(jh, expr) J_ASSERT(expr)
299#endif
300
301#if defined(JBD2_PARANOID_IOFAIL)
302#define J_EXPECT(expr, why...) J_ASSERT(expr)
303#define J_EXPECT_BH(bh, expr, why...) J_ASSERT_BH(bh, expr)
304#define J_EXPECT_JH(jh, expr, why...) J_ASSERT_JH(jh, expr)
305#else
306#define __journal_expect(expr, why...) \
307 ({ \
308 int val = (expr); \
309 if (!val) { \
310 printk(KERN_ERR \
311 "EXT3-fs unexpected failure: %s;\n",# expr); \
312 printk(KERN_ERR why "\n"); \
313 } \
314 val; \
315 })
316#define J_EXPECT(expr, why...) __journal_expect(expr, ## why)
317#define J_EXPECT_BH(bh, expr, why...) __journal_expect(expr, ## why)
318#define J_EXPECT_JH(jh, expr, why...) __journal_expect(expr, ## why)
319#endif
320
321enum jbd_state_bits {
322 BH_JBD
323 = BH_PrivateStart,
324 BH_JWrite,
325 BH_Freed,
326 BH_Revoked,
327 BH_RevokeValid,
328 BH_JBDDirty,
329 BH_State,
330 BH_JournalHead,
331 BH_Unshadow,
332};
333
334BUFFER_FNS(JBD, jbd)
335BUFFER_FNS(JWrite, jwrite)
336BUFFER_FNS(JBDDirty, jbddirty)
337TAS_BUFFER_FNS(JBDDirty, jbddirty)
338BUFFER_FNS(Revoked, revoked)
339TAS_BUFFER_FNS(Revoked, revoked)
340BUFFER_FNS(RevokeValid, revokevalid)
341TAS_BUFFER_FNS(RevokeValid, revokevalid)
342BUFFER_FNS(Freed, freed)
343
344static inline struct buffer_head *jh2bh(struct journal_head *jh)
345{
346 return jh->b_bh;
347}
348
349static inline struct journal_head *bh2jh(struct buffer_head *bh)
350{
351 return bh->b_private;
352}
353
354static inline void jbd_lock_bh_state(struct buffer_head *bh)
355{
356 bit_spin_lock(BH_State, &bh->b_state);
357}
358
359static inline int jbd_trylock_bh_state(struct buffer_head *bh)
360{
361 return bit_spin_trylock(BH_State, &bh->b_state);
362}
363
364static inline int jbd_is_locked_bh_state(struct buffer_head *bh)
365{
366 return bit_spin_is_locked(BH_State, &bh->b_state);
367}
368
369static inline void jbd_unlock_bh_state(struct buffer_head *bh)
370{
371 bit_spin_unlock(BH_State, &bh->b_state);
372}
373
374static inline void jbd_lock_bh_journal_head(struct buffer_head *bh)
375{
376 bit_spin_lock(BH_JournalHead, &bh->b_state);
377}
378
379static inline void jbd_unlock_bh_journal_head(struct buffer_head *bh)
380{
381 bit_spin_unlock(BH_JournalHead, &bh->b_state);
382}
383
384
385#define __JI_COMMIT_RUNNING 0
386
387
388
389
390#define JI_COMMIT_RUNNING (1 << __JI_COMMIT_RUNNING)
391
392
393
394
395
396struct jbd2_inode {
397
398
399 transaction_t *i_transaction;
400
401
402
403 transaction_t *i_next_transaction;
404
405
406 struct list_head i_list;
407
408
409
410 struct inode *i_vfs_inode;
411
412
413 unsigned int i_flags;
414};
415
416struct jbd2_revoke_table_s;
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434struct handle_s
435{
436
437 transaction_t *h_transaction;
438
439
440 int h_buffer_credits;
441
442
443 int h_ref;
444
445
446
447 int h_err;
448
449
450 unsigned int h_sync: 1;
451 unsigned int h_jdata: 1;
452 unsigned int h_aborted: 1;
453
454#ifdef CONFIG_DEBUG_LOCK_ALLOC
455 struct lockdep_map h_lockdep_map;
456#endif
457};
458
459
460
461
462
463struct transaction_chp_stats_s {
464 unsigned long cs_chp_time;
465 unsigned long cs_forced_to_close;
466 unsigned long cs_written;
467 unsigned long cs_dropped;
468};
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506struct transaction_s
507{
508
509 journal_t *t_journal;
510
511
512 tid_t t_tid;
513
514
515
516
517
518
519
520
521
522 enum {
523 T_RUNNING,
524 T_LOCKED,
525 T_RUNDOWN,
526 T_FLUSH,
527 T_COMMIT,
528 T_FINISHED
529 } t_state;
530
531
532
533
534 unsigned long t_log_start;
535
536
537 int t_nr_buffers;
538
539
540
541
542
543 struct journal_head *t_reserved_list;
544
545
546
547
548
549 struct journal_head *t_buffers;
550
551
552
553
554
555
556 struct journal_head *t_forget;
557
558
559
560
561
562 struct journal_head *t_checkpoint_list;
563
564
565
566
567
568 struct journal_head *t_checkpoint_io_list;
569
570
571
572
573
574 struct journal_head *t_iobuf_list;
575
576
577
578
579
580
581 struct journal_head *t_shadow_list;
582
583
584
585
586
587 struct journal_head *t_log_list;
588
589
590
591
592
593 struct list_head t_inode_list;
594
595
596
597
598 spinlock_t t_handle_lock;
599
600
601
602
603 unsigned long t_max_wait;
604
605
606
607
608 unsigned long t_start;
609
610
611
612
613 struct transaction_chp_stats_s t_chp_stats;
614
615
616
617
618
619 int t_updates;
620
621
622
623
624
625 int t_outstanding_credits;
626
627
628
629
630
631 transaction_t *t_cpnext, *t_cpprev;
632
633
634
635
636
637 unsigned long t_expires;
638
639
640
641
642 int t_handle_count;
643
644
645
646
647
648 struct list_head t_private_list;
649};
650
651struct transaction_run_stats_s {
652 unsigned long rs_wait;
653 unsigned long rs_running;
654 unsigned long rs_locked;
655 unsigned long rs_flushing;
656 unsigned long rs_logging;
657
658 unsigned long rs_handle_count;
659 unsigned long rs_blocks;
660 unsigned long rs_blocks_logged;
661};
662
663struct transaction_stats_s {
664 int ts_type;
665 unsigned long ts_tid;
666 union {
667 struct transaction_run_stats_s run;
668 struct transaction_chp_stats_s chp;
669 } u;
670};
671
672#define JBD2_STATS_RUN 1
673#define JBD2_STATS_CHECKPOINT 2
674
675static inline unsigned long
676jbd2_time_diff(unsigned long start, unsigned long end)
677{
678 if (end >= start)
679 return end - start;
680
681 return end + (MAX_JIFFY_OFFSET - start);
682}
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754struct journal_s
755{
756
757 unsigned long j_flags;
758
759
760
761
762
763 int j_errno;
764
765
766 struct buffer_head *j_sb_buffer;
767 journal_superblock_t *j_superblock;
768
769
770 int j_format_version;
771
772
773
774
775 spinlock_t j_state_lock;
776
777
778
779
780 int j_barrier_count;
781
782
783 struct mutex j_barrier;
784
785
786
787
788
789 transaction_t *j_running_transaction;
790
791
792
793
794
795 transaction_t *j_committing_transaction;
796
797
798
799
800
801 transaction_t *j_checkpoint_transactions;
802
803
804
805
806
807 wait_queue_head_t j_wait_transaction_locked;
808
809
810 wait_queue_head_t j_wait_logspace;
811
812
813 wait_queue_head_t j_wait_done_commit;
814
815
816 wait_queue_head_t j_wait_checkpoint;
817
818
819 wait_queue_head_t j_wait_commit;
820
821
822 wait_queue_head_t j_wait_updates;
823
824
825 struct mutex j_checkpoint_mutex;
826
827
828
829
830
831 unsigned long j_head;
832
833
834
835
836
837 unsigned long j_tail;
838
839
840
841
842
843 unsigned long j_free;
844
845
846
847
848
849 unsigned long j_first;
850 unsigned long j_last;
851
852
853
854
855
856 struct block_device *j_dev;
857 int j_blocksize;
858 unsigned long long j_blk_offset;
859 char j_devname[BDEVNAME_SIZE+24];
860
861
862
863
864
865 struct block_device *j_fs_dev;
866
867
868 unsigned int j_maxlen;
869
870
871
872
873 spinlock_t j_list_lock;
874
875
876
877
878 struct inode *j_inode;
879
880
881
882
883 tid_t j_tail_sequence;
884
885
886
887
888 tid_t j_transaction_sequence;
889
890
891
892
893
894 tid_t j_commit_sequence;
895
896
897
898
899
900 tid_t j_commit_request;
901
902
903
904
905
906
907
908 __u8 j_uuid[16];
909
910
911 struct task_struct *j_task;
912
913
914
915
916
917 int j_max_transaction_buffers;
918
919
920
921
922 unsigned long j_commit_interval;
923
924
925 struct timer_list j_commit_timer;
926
927
928
929
930
931 spinlock_t j_revoke_lock;
932 struct jbd2_revoke_table_s *j_revoke;
933 struct jbd2_revoke_table_s *j_revoke_table[2];
934
935
936
937
938 struct buffer_head **j_wbuf;
939 int j_wbufsize;
940
941 pid_t j_last_sync_writer;
942
943
944 void (*j_commit_callback)(journal_t *,
945 transaction_t *);
946
947
948
949
950 struct transaction_stats_s *j_history;
951 int j_history_max;
952 int j_history_cur;
953
954
955
956 spinlock_t j_history_lock;
957 struct proc_dir_entry *j_proc_entry;
958 struct transaction_stats_s j_stats;
959
960
961 unsigned int j_failed_commit;
962
963
964
965
966
967 void *j_private;
968};
969
970
971
972
973#define JBD2_UNMOUNT 0x001
974#define JBD2_ABORT 0x002
975#define JBD2_ACK_ERR 0x004
976#define JBD2_FLUSHED 0x008
977#define JBD2_LOADED 0x010
978#define JBD2_BARRIER 0x020
979#define JBD2_ABORT_ON_SYNCDATA_ERR 0x040
980
981
982
983
984
985
986
987
988
989extern void jbd2_journal_unfile_buffer(journal_t *, struct journal_head *);
990extern void __jbd2_journal_unfile_buffer(struct journal_head *);
991extern void __jbd2_journal_refile_buffer(struct journal_head *);
992extern void jbd2_journal_refile_buffer(journal_t *, struct journal_head *);
993extern void __jbd2_journal_file_buffer(struct journal_head *, transaction_t *, int);
994extern void __journal_free_buffer(struct journal_head *bh);
995extern void jbd2_journal_file_buffer(struct journal_head *, transaction_t *, int);
996extern void __journal_clean_data_list(transaction_t *transaction);
997
998
999extern struct journal_head * jbd2_journal_get_descriptor_buffer(journal_t *);
1000int jbd2_journal_next_log_block(journal_t *, unsigned long long *);
1001
1002
1003extern void jbd2_journal_commit_transaction(journal_t *);
1004
1005
1006int __jbd2_journal_clean_checkpoint_list(journal_t *journal);
1007int __jbd2_journal_remove_checkpoint(struct journal_head *);
1008void __jbd2_journal_insert_checkpoint(struct journal_head *, transaction_t *);
1009
1010
1011extern int
1012jbd2_journal_write_metadata_buffer(transaction_t *transaction,
1013 struct journal_head *jh_in,
1014 struct journal_head **jh_out,
1015 unsigned long long blocknr);
1016
1017
1018extern void __wait_on_journal (journal_t *);
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031static inline handle_t *journal_current_handle(void)
1032{
1033 return current->journal_info;
1034}
1035
1036
1037
1038
1039
1040
1041
1042extern handle_t *jbd2_journal_start(journal_t *, int nblocks);
1043extern int jbd2_journal_restart (handle_t *, int nblocks);
1044extern int jbd2_journal_extend (handle_t *, int nblocks);
1045extern int jbd2_journal_get_write_access(handle_t *, struct buffer_head *);
1046extern int jbd2_journal_get_create_access (handle_t *, struct buffer_head *);
1047extern int jbd2_journal_get_undo_access(handle_t *, struct buffer_head *);
1048extern int jbd2_journal_dirty_metadata (handle_t *, struct buffer_head *);
1049extern void jbd2_journal_release_buffer (handle_t *, struct buffer_head *);
1050extern int jbd2_journal_forget (handle_t *, struct buffer_head *);
1051extern void journal_sync_buffer (struct buffer_head *);
1052extern void jbd2_journal_invalidatepage(journal_t *,
1053 struct page *, unsigned long);
1054extern int jbd2_journal_try_to_free_buffers(journal_t *, struct page *, gfp_t);
1055extern int jbd2_journal_stop(handle_t *);
1056extern int jbd2_journal_flush (journal_t *);
1057extern void jbd2_journal_lock_updates (journal_t *);
1058extern void jbd2_journal_unlock_updates (journal_t *);
1059
1060extern journal_t * jbd2_journal_init_dev(struct block_device *bdev,
1061 struct block_device *fs_dev,
1062 unsigned long long start, int len, int bsize);
1063extern journal_t * jbd2_journal_init_inode (struct inode *);
1064extern int jbd2_journal_update_format (journal_t *);
1065extern int jbd2_journal_check_used_features
1066 (journal_t *, unsigned long, unsigned long, unsigned long);
1067extern int jbd2_journal_check_available_features
1068 (journal_t *, unsigned long, unsigned long, unsigned long);
1069extern int jbd2_journal_set_features
1070 (journal_t *, unsigned long, unsigned long, unsigned long);
1071extern void jbd2_journal_clear_features
1072 (journal_t *, unsigned long, unsigned long, unsigned long);
1073extern int jbd2_journal_create (journal_t *);
1074extern int jbd2_journal_load (journal_t *journal);
1075extern int jbd2_journal_destroy (journal_t *);
1076extern int jbd2_journal_recover (journal_t *journal);
1077extern int jbd2_journal_wipe (journal_t *, int);
1078extern int jbd2_journal_skip_recovery (journal_t *);
1079extern void jbd2_journal_update_superblock (journal_t *, int);
1080extern void __jbd2_journal_abort_hard (journal_t *);
1081extern void jbd2_journal_abort (journal_t *, int);
1082extern int jbd2_journal_errno (journal_t *);
1083extern void jbd2_journal_ack_err (journal_t *);
1084extern int jbd2_journal_clear_err (journal_t *);
1085extern int jbd2_journal_bmap(journal_t *, unsigned long, unsigned long long *);
1086extern int jbd2_journal_force_commit(journal_t *);
1087extern int jbd2_journal_file_inode(handle_t *handle, struct jbd2_inode *inode);
1088extern int jbd2_journal_begin_ordered_truncate(struct jbd2_inode *inode, loff_t new_size);
1089extern void jbd2_journal_init_jbd_inode(struct jbd2_inode *jinode, struct inode *inode);
1090extern void jbd2_journal_release_jbd_inode(journal_t *journal, struct jbd2_inode *jinode);
1091
1092
1093
1094
1095struct journal_head *jbd2_journal_add_journal_head(struct buffer_head *bh);
1096struct journal_head *jbd2_journal_grab_journal_head(struct buffer_head *bh);
1097void jbd2_journal_remove_journal_head(struct buffer_head *bh);
1098void jbd2_journal_put_journal_head(struct journal_head *jh);
1099
1100
1101
1102
1103extern struct kmem_cache *jbd2_handle_cache;
1104
1105static inline handle_t *jbd2_alloc_handle(gfp_t gfp_flags)
1106{
1107 return kmem_cache_alloc(jbd2_handle_cache, gfp_flags);
1108}
1109
1110static inline void jbd2_free_handle(handle_t *handle)
1111{
1112 kmem_cache_free(jbd2_handle_cache, handle);
1113}
1114
1115
1116#define JOURNAL_REVOKE_DEFAULT_HASH 256
1117extern int jbd2_journal_init_revoke(journal_t *, int);
1118extern void jbd2_journal_destroy_revoke_caches(void);
1119extern int jbd2_journal_init_revoke_caches(void);
1120
1121extern void jbd2_journal_destroy_revoke(journal_t *);
1122extern int jbd2_journal_revoke (handle_t *, unsigned long long, struct buffer_head *);
1123extern int jbd2_journal_cancel_revoke(handle_t *, struct journal_head *);
1124extern void jbd2_journal_write_revoke_records(journal_t *, transaction_t *);
1125
1126
1127extern int jbd2_journal_set_revoke(journal_t *, unsigned long long, tid_t);
1128extern int jbd2_journal_test_revoke(journal_t *, unsigned long long, tid_t);
1129extern void jbd2_journal_clear_revoke(journal_t *);
1130extern void jbd2_journal_switch_revoke_table(journal_t *journal);
1131
1132
1133
1134
1135
1136
1137
1138
1139int __jbd2_log_space_left(journal_t *);
1140int jbd2_log_start_commit(journal_t *journal, tid_t tid);
1141int __jbd2_log_start_commit(journal_t *journal, tid_t tid);
1142int jbd2_journal_start_commit(journal_t *journal, tid_t *tid);
1143int jbd2_journal_force_commit_nested(journal_t *journal);
1144int jbd2_log_wait_commit(journal_t *journal, tid_t tid);
1145int jbd2_log_do_checkpoint(journal_t *journal);
1146
1147void __jbd2_log_wait_for_space(journal_t *journal);
1148extern void __jbd2_journal_drop_transaction(journal_t *, transaction_t *);
1149extern int jbd2_cleanup_journal_tail(journal_t *);
1150
1151
1152
1153#define jbd_ENOSYS() \
1154do { \
1155 printk (KERN_ERR "JBD unimplemented function %s\n", __func__); \
1156 current->state = TASK_UNINTERRUPTIBLE; \
1157 schedule(); \
1158} while (1)
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170static inline int is_journal_aborted(journal_t *journal)
1171{
1172 return journal->j_flags & JBD2_ABORT;
1173}
1174
1175static inline int is_handle_aborted(handle_t *handle)
1176{
1177 if (handle->h_aborted)
1178 return 1;
1179 return is_journal_aborted(handle->h_transaction->t_journal);
1180}
1181
1182static inline void jbd2_journal_abort_handle(handle_t *handle)
1183{
1184 handle->h_aborted = 1;
1185}
1186
1187#endif
1188
1189
1190
1191
1192static inline int tid_gt(tid_t x, tid_t y)
1193{
1194 int difference = (x - y);
1195 return (difference > 0);
1196}
1197
1198static inline int tid_geq(tid_t x, tid_t y)
1199{
1200 int difference = (x - y);
1201 return (difference >= 0);
1202}
1203
1204extern int jbd2_journal_blocks_per_page(struct inode *inode);
1205extern size_t journal_tag_bytes(journal_t *journal);
1206
1207
1208
1209
1210
1211static inline int jbd_space_needed(journal_t *journal)
1212{
1213 int nblocks = journal->j_max_transaction_buffers;
1214 if (journal->j_committing_transaction)
1215 nblocks += journal->j_committing_transaction->
1216 t_outstanding_credits;
1217 return nblocks;
1218}
1219
1220
1221
1222
1223
1224
1225#define BJ_None 0
1226#define BJ_Metadata 1
1227#define BJ_Forget 2
1228#define BJ_IO 3
1229#define BJ_Shadow 4
1230#define BJ_LogCtl 5
1231#define BJ_Reserved 6
1232#define BJ_Types 7
1233
1234extern int jbd_blocks_per_page(struct inode *inode);
1235
1236#ifdef __KERNEL__
1237
1238#define buffer_trace_init(bh) do {} while (0)
1239#define print_buffer_fields(bh) do {} while (0)
1240#define print_buffer_trace(bh) do {} while (0)
1241#define BUFFER_TRACE(bh, info) do {} while (0)
1242#define BUFFER_TRACE2(bh, bh2, info) do {} while (0)
1243#define JBUFFER_TRACE(jh, info) do {} while (0)
1244
1245#endif
1246
1247#endif
1248