blob: 9690ce62c9a7f63bbc2a4b485617199cc14253c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
18#ifndef __XFS_BUF_ITEM_H__
19#define __XFS_BUF_ITEM_H__
20
Dave Chinnera8da0da2013-08-12 20:49:24 +100021/* kernel only definitions */
David Chinnera8272ce2007-11-23 16:28:09 +110022
Dave Chinnera8da0da2013-08-12 20:49:24 +100023/* buf log item flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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 Chinnerccf7c232010-05-20 23:19:42 +100030#define XFS_BLI_INODE_BUF 0x40
Dave Chinner5f6bed72013-06-27 16:04:52 +100031#define XFS_BLI_ORDERED 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000033#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 Chinnerccf7c232010-05-20 23:19:42 +100039 { XFS_BLI_STALE_INODE, "STALE_INODE" }, \
Dave Chinner5f6bed72013-06-27 16:04:52 +100040 { XFS_BLI_INODE_BUF, "INODE_BUF" }, \
41 { XFS_BLI_ORDERED, "ORDERED" }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044struct xfs_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045struct xfs_mount;
46struct xfs_buf_log_item;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
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 */
53typedef 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 Chinner372cc85e2012-06-22 18:50:12 +100059 int bli_format_count; /* count of headers */
60 struct xfs_buf_log_format *bli_formats; /* array of in-log header ptrs */
Mark Tinguelyb9438172012-12-04 17:18:03 -060061 struct xfs_buf_log_format __bli_format; /* embedded in-log header */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062} xfs_buf_log_item_t;
63
Dave Chinnerf79af0b2015-08-25 10:05:13 +100064int xfs_buf_item_init(struct xfs_buf *, struct xfs_mount *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065void xfs_buf_item_relse(struct xfs_buf *);
66void xfs_buf_item_log(xfs_buf_log_item_t *, uint, uint);
Brian Fosterba986b32017-09-17 14:07:00 -070067bool xfs_buf_item_dirty_format(struct xfs_buf_log_item *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068void xfs_buf_attach_iodone(struct xfs_buf *,
69 void(*)(struct xfs_buf *, xfs_log_item_t *),
70 xfs_log_item_t *);
71void xfs_buf_iodone_callbacks(struct xfs_buf *);
Christoph Hellwigca30b2a2010-06-23 18:11:15 +100072void xfs_buf_iodone(struct xfs_buf *, struct xfs_log_item *);
Carlos Maiolino08003562017-09-17 14:06:50 -070073bool xfs_buf_resubmit_failed_buffers(struct xfs_buf *,
74 struct xfs_log_item *,
75 struct list_head *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Dave Chinnera8da0da2013-08-12 20:49:24 +100077extern kmem_zone_t *xfs_buf_item_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79#endif /* __XFS_BUF_ITEM_H__ */