Merge tag 'for-6.4/block-2023-05-06' of git://git.kernel.dk/linux
[linux-block.git] / fs / xfs / xfs_dquot_item.h
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
4ce3121f
NS
3 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
4 * All Rights Reserved.
1da177e4
LT
5 */
6#ifndef __XFS_DQUOT_ITEM_H__
7#define __XFS_DQUOT_ITEM_H__
8
9struct xfs_dquot;
10struct xfs_trans;
11struct xfs_mount;
1da177e4 12
fd8b81db 13struct xfs_dq_logitem {
d0bdfb10 14 struct xfs_log_item qli_item; /* common portion */
fd8b81db 15 struct xfs_dquot *qli_dquot; /* dquot ptr */
d0bdfb10 16 xfs_lsn_t qli_flush_lsn; /* lsn at last flush */
fd8b81db 17};
1da177e4 18
d0bdfb10 19void xfs_qm_dquot_logitem_init(struct xfs_dquot *dqp);
1da177e4
LT
20
21#endif /* __XFS_DQUOT_ITEM_H__ */