brintos

brintos / linux-shallow public Read only

0
0
Text · 498 B · 794710c Raw
22 lines · c
1// SPDX-License-Identifier: GPL-2.02/*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__8 9struct xfs_dquot;10struct xfs_trans;11struct xfs_mount;12 13struct xfs_dq_logitem {14	struct xfs_log_item	qli_item;	/* common portion */15	struct xfs_dquot	*qli_dquot;	/* dquot ptr */16	xfs_lsn_t		qli_flush_lsn;	/* lsn at last flush */17};18 19void xfs_qm_dquot_logitem_init(struct xfs_dquot *dqp);20 21#endif	/* __XFS_DQUOT_ITEM_H__ */22