2018-06-06 02:42:14 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2005-11-02 03:59:41 +00:00
|
|
|
* Copyright (c) 2000-2003 Silicon Graphics, Inc.
|
|
|
|
* All Rights Reserved.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
#ifndef __XFS_DQUOT_ITEM_H__
|
|
|
|
#define __XFS_DQUOT_ITEM_H__
|
|
|
|
|
|
|
|
struct xfs_dquot;
|
|
|
|
struct xfs_trans;
|
|
|
|
struct xfs_mount;
|
|
|
|
|
2019-11-13 01:04:26 +00:00
|
|
|
struct xfs_dq_logitem {
|
2019-11-13 01:04:27 +00:00
|
|
|
struct xfs_log_item qli_item; /* common portion */
|
2019-11-13 01:04:26 +00:00
|
|
|
struct xfs_dquot *qli_dquot; /* dquot ptr */
|
2019-11-13 01:04:27 +00:00
|
|
|
xfs_lsn_t qli_flush_lsn; /* lsn at last flush */
|
2019-11-13 01:04:26 +00:00
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2019-11-13 01:04:27 +00:00
|
|
|
void xfs_qm_dquot_logitem_init(struct xfs_dquot *dqp);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* __XFS_DQUOT_ITEM_H__ */
|