Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * Copyright (c) 2000-2003 Silicon Graphics, Inc.
0004  * All Rights Reserved.
0005  */
0006 #ifndef __XFS_DQUOT_ITEM_H__
0007 #define __XFS_DQUOT_ITEM_H__
0008 
0009 struct xfs_dquot;
0010 struct xfs_trans;
0011 struct xfs_mount;
0012 
0013 struct xfs_dq_logitem {
0014     struct xfs_log_item qli_item;   /* common portion */
0015     struct xfs_dquot    *qli_dquot; /* dquot ptr */
0016     xfs_lsn_t       qli_flush_lsn;  /* lsn at last flush */
0017 };
0018 
0019 void xfs_qm_dquot_logitem_init(struct xfs_dquot *dqp);
0020 
0021 #endif  /* __XFS_DQUOT_ITEM_H__ */