Merge tag 'extcon-next-for-4.20' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux/fpc-iii.git] / fs / xfs / xfs_dquot_item.h
blobdb9df710a3080c43a964c04d3869a1a208209916
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6 #ifndef __XFS_DQUOT_ITEM_H__
7 #define __XFS_DQUOT_ITEM_H__
9 struct xfs_dquot;
10 struct xfs_trans;
11 struct xfs_mount;
12 struct xfs_qoff_logitem;
14 typedef struct xfs_dq_logitem {
15 xfs_log_item_t qli_item; /* common portion */
16 struct xfs_dquot *qli_dquot; /* dquot ptr */
17 xfs_lsn_t qli_flush_lsn; /* lsn at last flush */
18 } xfs_dq_logitem_t;
20 typedef struct xfs_qoff_logitem {
21 xfs_log_item_t qql_item; /* common portion */
22 struct xfs_qoff_logitem *qql_start_lip; /* qoff-start logitem, if any */
23 unsigned int qql_flags;
24 } xfs_qoff_logitem_t;
27 extern void xfs_qm_dquot_logitem_init(struct xfs_dquot *);
28 extern xfs_qoff_logitem_t *xfs_qm_qoff_logitem_init(struct xfs_mount *,
29 struct xfs_qoff_logitem *, uint);
30 extern xfs_qoff_logitem_t *xfs_trans_get_qoff_item(struct xfs_trans *,
31 struct xfs_qoff_logitem *, uint);
32 extern void xfs_trans_log_quotaoff_item(struct xfs_trans *,
33 struct xfs_qoff_logitem *);
35 #endif /* __XFS_DQUOT_ITEM_H__ */