Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | #ifndef __XFS_BUF_ITEM_H__ |
| 19 | #define __XFS_BUF_ITEM_H__ |
| 20 | |
Dave Chinner | a8da0da | 2013-08-12 20:49:24 +1000 | [diff] [blame] | 21 | /* kernel only definitions */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 22 | |
Dave Chinner | a8da0da | 2013-08-12 20:49:24 +1000 | [diff] [blame] | 23 | /* buf log item flags */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #define XFS_BLI_HOLD 0x01 |
| 25 | #define XFS_BLI_DIRTY 0x02 |
| 26 | #define XFS_BLI_STALE 0x04 |
| 27 | #define XFS_BLI_LOGGED 0x08 |
| 28 | #define XFS_BLI_INODE_ALLOC_BUF 0x10 |
| 29 | #define XFS_BLI_STALE_INODE 0x20 |
Dave Chinner | ccf7c23 | 2010-05-20 23:19:42 +1000 | [diff] [blame] | 30 | #define XFS_BLI_INODE_BUF 0x40 |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 31 | #define XFS_BLI_ORDERED 0x80 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 33 | #define XFS_BLI_FLAGS \ |
| 34 | { XFS_BLI_HOLD, "HOLD" }, \ |
| 35 | { XFS_BLI_DIRTY, "DIRTY" }, \ |
| 36 | { XFS_BLI_STALE, "STALE" }, \ |
| 37 | { XFS_BLI_LOGGED, "LOGGED" }, \ |
| 38 | { XFS_BLI_INODE_ALLOC_BUF, "INODE_ALLOC" }, \ |
Dave Chinner | ccf7c23 | 2010-05-20 23:19:42 +1000 | [diff] [blame] | 39 | { XFS_BLI_STALE_INODE, "STALE_INODE" }, \ |
Dave Chinner | 5f6bed7 | 2013-06-27 16:04:52 +1000 | [diff] [blame] | 40 | { XFS_BLI_INODE_BUF, "INODE_BUF" }, \ |
| 41 | { XFS_BLI_ORDERED, "ORDERED" } |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | struct xfs_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | struct xfs_mount; |
| 46 | struct xfs_buf_log_item; |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* |
| 49 | * This is the in core log item structure used to track information |
| 50 | * needed to log buffers. It tracks how many times the lock has been |
| 51 | * locked, and which 128 byte chunks of the buffer are dirty. |
| 52 | */ |
| 53 | typedef struct xfs_buf_log_item { |
| 54 | xfs_log_item_t bli_item; /* common item structure */ |
| 55 | struct xfs_buf *bli_buf; /* real buffer pointer */ |
| 56 | unsigned int bli_flags; /* misc flags */ |
| 57 | unsigned int bli_recur; /* lock recursion count */ |
| 58 | atomic_t bli_refcount; /* cnt of tp refs */ |
Dave Chinner | 372cc85e | 2012-06-22 18:50:12 +1000 | [diff] [blame] | 59 | int bli_format_count; /* count of headers */ |
| 60 | struct xfs_buf_log_format *bli_formats; /* array of in-log header ptrs */ |
Mark Tinguely | b943817 | 2012-12-04 17:18:03 -0600 | [diff] [blame] | 61 | struct xfs_buf_log_format __bli_format; /* embedded in-log header */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | } xfs_buf_log_item_t; |
| 63 | |
Dave Chinner | f79af0b | 2015-08-25 10:05:13 +1000 | [diff] [blame] | 64 | int xfs_buf_item_init(struct xfs_buf *, struct xfs_mount *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | void xfs_buf_item_relse(struct xfs_buf *); |
| 66 | void xfs_buf_item_log(xfs_buf_log_item_t *, uint, uint); |
| 67 | uint xfs_buf_item_dirty(xfs_buf_log_item_t *); |
| 68 | void xfs_buf_attach_iodone(struct xfs_buf *, |
| 69 | void(*)(struct xfs_buf *, xfs_log_item_t *), |
| 70 | xfs_log_item_t *); |
| 71 | void xfs_buf_iodone_callbacks(struct xfs_buf *); |
Christoph Hellwig | ca30b2a | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 72 | void xfs_buf_iodone(struct xfs_buf *, struct xfs_log_item *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Dave Chinner | a8da0da | 2013-08-12 20:49:24 +1000 | [diff] [blame] | 74 | extern kmem_zone_t *xfs_buf_item_zone; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | #endif /* __XFS_BUF_ITEM_H__ */ |