trans.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License v.2.
  8. */
  9. #include <linux/sched.h>
  10. #include <linux/slab.h>
  11. #include <linux/spinlock.h>
  12. #include <linux/completion.h>
  13. #include <linux/buffer_head.h>
  14. #include <linux/gfs2_ondisk.h>
  15. #include <linux/kallsyms.h>
  16. #include <asm/semaphore.h>
  17. #include "gfs2.h"
  18. #include "lm_interface.h"
  19. #include "incore.h"
  20. #include "glock.h"
  21. #include "log.h"
  22. #include "lops.h"
  23. #include "meta_io.h"
  24. #include "trans.h"
  25. #include "util.h"
  26. int gfs2_trans_begin(struct gfs2_sbd *sdp, unsigned int blocks,
  27. unsigned int revokes)
  28. {
  29. struct gfs2_trans *tr;
  30. int error;
  31. BUG_ON(current->journal_info);
  32. BUG_ON(blocks == 0 && revokes == 0);
  33. tr = kzalloc(sizeof(struct gfs2_trans), GFP_NOFS);
  34. if (!tr)
  35. return -ENOMEM;
  36. tr->tr_ip = (unsigned long)__builtin_return_address(0);
  37. tr->tr_blocks = blocks;
  38. tr->tr_revokes = revokes;
  39. tr->tr_reserved = 1;
  40. if (blocks)
  41. tr->tr_reserved += 1 + blocks;
  42. if (revokes)
  43. tr->tr_reserved += gfs2_struct2blk(sdp, revokes,
  44. sizeof(uint64_t));
  45. INIT_LIST_HEAD(&tr->tr_list_buf);
  46. gfs2_holder_init(sdp->sd_trans_gl, LM_ST_SHARED,
  47. GL_NEVER_RECURSE, &tr->tr_t_gh);
  48. error = gfs2_glock_nq(&tr->tr_t_gh);
  49. if (error)
  50. goto fail_holder_uninit;
  51. if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
  52. tr->tr_t_gh.gh_flags |= GL_NOCACHE;
  53. error = -EROFS;
  54. goto fail_gunlock;
  55. }
  56. error = gfs2_log_reserve(sdp, tr->tr_reserved);
  57. if (error)
  58. goto fail_gunlock;
  59. current->journal_info = tr;
  60. return 0;
  61. fail_gunlock:
  62. gfs2_glock_dq(&tr->tr_t_gh);
  63. fail_holder_uninit:
  64. gfs2_holder_uninit(&tr->tr_t_gh);
  65. kfree(tr);
  66. return error;
  67. }
  68. void gfs2_trans_end(struct gfs2_sbd *sdp)
  69. {
  70. struct gfs2_trans *tr;
  71. tr = current->journal_info;
  72. current->journal_info = NULL;
  73. if (gfs2_assert_warn(sdp, tr))
  74. return;
  75. if (!tr->tr_touched) {
  76. gfs2_log_release(sdp, tr->tr_reserved);
  77. gfs2_glock_dq(&tr->tr_t_gh);
  78. gfs2_holder_uninit(&tr->tr_t_gh);
  79. kfree(tr);
  80. return;
  81. }
  82. if (gfs2_assert_withdraw(sdp, tr->tr_num_buf <= tr->tr_blocks)) {
  83. fs_err(sdp, "tr_num_buf = %u, tr_blocks = %u ",
  84. tr->tr_num_buf, tr->tr_blocks);
  85. print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
  86. }
  87. if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes)) {
  88. fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u ",
  89. tr->tr_num_revoke, tr->tr_revokes);
  90. print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
  91. }
  92. gfs2_log_commit(sdp, tr);
  93. gfs2_glock_dq(&tr->tr_t_gh);
  94. gfs2_holder_uninit(&tr->tr_t_gh);
  95. kfree(tr);
  96. if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
  97. gfs2_log_flush(sdp, NULL);
  98. }
  99. void gfs2_trans_add_gl(struct gfs2_glock *gl)
  100. {
  101. lops_add(gl->gl_sbd, &gl->gl_le);
  102. }
  103. /**
  104. * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
  105. * @gl: the glock the buffer belongs to
  106. * @bh: The buffer to add
  107. * @meta: True in the case of adding metadata
  108. *
  109. */
  110. void gfs2_trans_add_bh(struct gfs2_glock *gl, struct buffer_head *bh, int meta)
  111. {
  112. struct gfs2_sbd *sdp = gl->gl_sbd;
  113. struct gfs2_bufdata *bd;
  114. bd = bh->b_private;
  115. if (bd)
  116. gfs2_assert(sdp, bd->bd_gl == gl);
  117. else {
  118. gfs2_attach_bufdata(gl, bh, meta);
  119. bd = bh->b_private;
  120. }
  121. lops_add(sdp, &bd->bd_le);
  122. }
  123. void gfs2_trans_add_revoke(struct gfs2_sbd *sdp, uint64_t blkno)
  124. {
  125. struct gfs2_revoke *rv = kmalloc(sizeof(struct gfs2_revoke),
  126. GFP_NOFS | __GFP_NOFAIL);
  127. lops_init_le(&rv->rv_le, &gfs2_revoke_lops);
  128. rv->rv_blkno = blkno;
  129. lops_add(sdp, &rv->rv_le);
  130. }
  131. void gfs2_trans_add_unrevoke(struct gfs2_sbd *sdp, uint64_t blkno)
  132. {
  133. struct gfs2_revoke *rv;
  134. int found = 0;
  135. gfs2_log_lock(sdp);
  136. list_for_each_entry(rv, &sdp->sd_log_le_revoke, rv_le.le_list) {
  137. if (rv->rv_blkno == blkno) {
  138. list_del(&rv->rv_le.le_list);
  139. gfs2_assert_withdraw(sdp, sdp->sd_log_num_revoke);
  140. sdp->sd_log_num_revoke--;
  141. found = 1;
  142. break;
  143. }
  144. }
  145. gfs2_log_unlock(sdp);
  146. if (found) {
  147. struct gfs2_trans *tr = current->journal_info;
  148. kfree(rv);
  149. tr->tr_num_revoke_rm++;
  150. }
  151. }
  152. void gfs2_trans_add_rg(struct gfs2_rgrpd *rgd)
  153. {
  154. lops_add(rgd->rd_sbd, &rgd->rd_le);
  155. }