blob: 091eae9f4e7434e7d40364567dc98e84aa177060 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000,2002,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6#ifndef __XFS_TRANS_PRIV_H__
7#define __XFS_TRANS_PRIV_H__
8
9struct xfs_log_item;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010struct xfs_mount;
11struct xfs_trans;
Dave Chinner0e57f6a2010-12-20 12:02:19 +110012struct xfs_ail;
13struct xfs_log_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Dave Chinnerd386b322013-08-12 20:49:31 +100015
16void xfs_trans_init(struct xfs_mount *);
Christoph Hellwige98c4142010-06-23 18:11:15 +100017void xfs_trans_add_item(struct xfs_trans *, struct xfs_log_item *);
18void xfs_trans_del_item(struct xfs_log_item *);
Dave Chinnerd17c7012010-08-24 11:42:52 +100019void xfs_trans_free_items(struct xfs_trans *tp, xfs_lsn_t commit_lsn,
Christoph Hellwigeacb24e2015-06-04 13:47:43 +100020 bool abort);
Dave Chinner71e330b2010-05-21 14:37:18 +100021void xfs_trans_unreserve_and_mod_sb(struct xfs_trans *tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Dave Chinner0e57f6a2010-12-20 12:02:19 +110023void xfs_trans_committed_bulk(struct xfs_ail *ailp, struct xfs_log_vec *lv,
24 xfs_lsn_t commit_lsn, int aborted);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
David Chinner27d8d5f2008-10-30 17:38:39 +110026 * AIL traversal cursor.
27 *
28 * Rather than using a generation number for detecting changes in the ail, use
29 * a cursor that is protected by the ail lock. The aild cursor exists in the
30 * struct xfs_ail, but other traversals can declare it on the stack and link it
31 * to the ail list.
32 *
33 * When an object is deleted from or moved int the AIL, the cursor list is
34 * searched to see if the object is a designated cursor item. If it is, it is
35 * deleted from the cursor so that the next time the cursor is used traversal
36 * will return to the start.
37 *
38 * This means a traversal colliding with a removal will cause a restart of the
39 * list scan, rather than any insertion or deletion anywhere in the list. The
40 * low bit of the item pointer is set if the cursor has been invalidated so
41 * that we can tell the difference between invalidation and reaching the end
42 * of the list to trigger traversal restarts.
43 */
44struct xfs_ail_cursor {
Dave Chinneraf3e4022011-07-18 03:40:18 +000045 struct list_head list;
David Chinner27d8d5f2008-10-30 17:38:39 +110046 struct xfs_log_item *item;
47};
48
49/*
50 * Private AIL structures.
51 *
52 * Eventually we need to drive the locking in here as well.
53 */
54struct xfs_ail {
Matthew Wilcox57e80952018-03-07 14:59:39 -080055 struct xfs_mount *ail_mount;
56 struct task_struct *ail_task;
57 struct list_head ail_head;
58 xfs_lsn_t ail_target;
59 xfs_lsn_t ail_target_prev;
60 struct list_head ail_cursors;
61 spinlock_t ail_lock;
62 xfs_lsn_t ail_last_pushed_lsn;
63 int ail_log_flush;
64 struct list_head ail_buf_list;
65 wait_queue_head_t ail_empty;
David Chinner27d8d5f2008-10-30 17:38:39 +110066};
67
68/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * From xfs_trans_ail.c
70 */
Dave Chinnere6059942010-12-20 12:34:26 +110071void xfs_trans_ail_update_bulk(struct xfs_ail *ailp,
Dave Chinner1d8c95a2011-07-18 03:40:16 +000072 struct xfs_ail_cursor *cur,
Dave Chinnere6059942010-12-20 12:34:26 +110073 struct xfs_log_item **log_items, int nr_items,
Matthew Wilcox57e80952018-03-07 14:59:39 -080074 xfs_lsn_t lsn) __releases(ailp->ail_lock);
Jie Liu8d1d4082013-08-15 13:08:35 +080075/*
76 * Return a pointer to the first item in the AIL. If the AIL is empty, then
77 * return NULL.
78 */
79static inline struct xfs_log_item *
80xfs_ail_min(
81 struct xfs_ail *ailp)
82{
Matthew Wilcox57e80952018-03-07 14:59:39 -080083 return list_first_entry_or_null(&ailp->ail_head, struct xfs_log_item,
Jie Liu8d1d4082013-08-15 13:08:35 +080084 li_ail);
85}
86
Dave Chinnere6059942010-12-20 12:34:26 +110087static inline void
88xfs_trans_ail_update(
89 struct xfs_ail *ailp,
90 struct xfs_log_item *lip,
Matthew Wilcox57e80952018-03-07 14:59:39 -080091 xfs_lsn_t lsn) __releases(ailp->ail_lock)
Dave Chinnere6059942010-12-20 12:34:26 +110092{
Dave Chinner1d8c95a2011-07-18 03:40:16 +000093 xfs_trans_ail_update_bulk(ailp, NULL, &lip, 1, lsn);
Dave Chinnere6059942010-12-20 12:34:26 +110094}
95
Christoph Hellwig27af1bb2017-04-21 11:24:42 -070096bool xfs_ail_delete_one(struct xfs_ail *ailp, struct xfs_log_item *lip);
97void xfs_trans_ail_delete(struct xfs_ail *ailp, struct xfs_log_item *lip,
Matthew Wilcox57e80952018-03-07 14:59:39 -080098 int shutdown_type) __releases(ailp->ail_lock);
Dave Chinner9552e7f2010-12-20 12:36:15 +110099
Brian Foster146e54b2015-08-19 10:01:08 +1000100static inline void
101xfs_trans_ail_remove(
102 struct xfs_log_item *lip,
103 int shutdown_type)
104{
105 struct xfs_ail *ailp = lip->li_ailp;
106
Matthew Wilcox57e80952018-03-07 14:59:39 -0800107 spin_lock(&ailp->ail_lock);
Brian Foster146e54b2015-08-19 10:01:08 +1000108 /* xfs_trans_ail_delete() drops the AIL lock */
Dave Chinner22525c12018-05-09 07:47:34 -0700109 if (test_bit(XFS_LI_IN_AIL, &lip->li_flags))
Brian Foster146e54b2015-08-19 10:01:08 +1000110 xfs_trans_ail_delete(ailp, lip, shutdown_type);
111 else
Matthew Wilcox57e80952018-03-07 14:59:39 -0800112 spin_unlock(&ailp->ail_lock);
Brian Foster146e54b2015-08-19 10:01:08 +1000113}
114
Dave Chinnerfd074842011-04-08 12:45:07 +1000115void xfs_ail_push(struct xfs_ail *, xfs_lsn_t);
116void xfs_ail_push_all(struct xfs_ail *);
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000117void xfs_ail_push_all_sync(struct xfs_ail *);
Christoph Hellwig1c304622012-04-23 15:58:33 +1000118struct xfs_log_item *xfs_ail_min(struct xfs_ail *ailp);
Dave Chinnerfd074842011-04-08 12:45:07 +1000119xfs_lsn_t xfs_ail_min_lsn(struct xfs_ail *ailp);
120
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000121struct xfs_log_item * xfs_trans_ail_cursor_first(struct xfs_ail *ailp,
David Chinner5b00f142008-10-30 17:39:00 +1100122 struct xfs_ail_cursor *cur,
123 xfs_lsn_t lsn);
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000124struct xfs_log_item * xfs_trans_ail_cursor_last(struct xfs_ail *ailp,
125 struct xfs_ail_cursor *cur,
126 xfs_lsn_t lsn);
127struct xfs_log_item * xfs_trans_ail_cursor_next(struct xfs_ail *ailp,
David Chinner27d8d5f2008-10-30 17:38:39 +1100128 struct xfs_ail_cursor *cur);
Eric Sandeene4a1e292014-04-14 19:06:05 +1000129void xfs_trans_ail_cursor_done(struct xfs_ail_cursor *cur);
David Chinner82fa9012008-10-30 17:38:26 +1100130
David Chinner7b2e2a32008-10-30 17:39:12 +1100131#if BITS_PER_LONG != 64
132static inline void
133xfs_trans_ail_copy_lsn(
134 struct xfs_ail *ailp,
135 xfs_lsn_t *dst,
136 xfs_lsn_t *src)
137{
138 ASSERT(sizeof(xfs_lsn_t) == 8); /* don't lock if it shrinks */
Matthew Wilcox57e80952018-03-07 14:59:39 -0800139 spin_lock(&ailp->ail_lock);
David Chinner7b2e2a32008-10-30 17:39:12 +1100140 *dst = *src;
Matthew Wilcox57e80952018-03-07 14:59:39 -0800141 spin_unlock(&ailp->ail_lock);
David Chinner7b2e2a32008-10-30 17:39:12 +1100142}
143#else
144static inline void
145xfs_trans_ail_copy_lsn(
146 struct xfs_ail *ailp,
147 xfs_lsn_t *dst,
148 xfs_lsn_t *src)
149{
150 ASSERT(sizeof(xfs_lsn_t) == 8);
151 *dst = *src;
152}
153#endif
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700154
155static inline void
156xfs_clear_li_failed(
157 struct xfs_log_item *lip)
158{
159 struct xfs_buf *bp = lip->li_buf;
160
Dave Chinner22525c12018-05-09 07:47:34 -0700161 ASSERT(test_bit(XFS_LI_IN_AIL, &lip->li_flags));
Matthew Wilcox57e80952018-03-07 14:59:39 -0800162 lockdep_assert_held(&lip->li_ailp->ail_lock);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700163
Dave Chinner22525c12018-05-09 07:47:34 -0700164 if (test_and_clear_bit(XFS_LI_FAILED, &lip->li_flags)) {
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700165 lip->li_buf = NULL;
166 xfs_buf_rele(bp);
167 }
168}
169
170static inline void
171xfs_set_li_failed(
172 struct xfs_log_item *lip,
173 struct xfs_buf *bp)
174{
Matthew Wilcox57e80952018-03-07 14:59:39 -0800175 lockdep_assert_held(&lip->li_ailp->ail_lock);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700176
Dave Chinner22525c12018-05-09 07:47:34 -0700177 if (!test_and_set_bit(XFS_LI_FAILED, &lip->li_flags)) {
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700178 xfs_buf_hold(bp);
Carlos Maiolinod3a304b2017-08-08 18:21:50 -0700179 lip->li_buf = bp;
180 }
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#endif /* __XFS_TRANS_PRIV_H__ */