xfs_dquot_item.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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__
  8. struct xfs_dquot;
  9. struct xfs_trans;
  10. struct xfs_mount;
  11. struct xfs_qoff_logitem;
  12. typedef struct xfs_dq_logitem {
  13. xfs_log_item_t qli_item; /* common portion */
  14. struct xfs_dquot *qli_dquot; /* dquot ptr */
  15. xfs_lsn_t qli_flush_lsn; /* lsn at last flush */
  16. } xfs_dq_logitem_t;
  17. typedef struct xfs_qoff_logitem {
  18. xfs_log_item_t qql_item; /* common portion */
  19. struct xfs_qoff_logitem *qql_start_lip; /* qoff-start logitem, if any */
  20. unsigned int qql_flags;
  21. } xfs_qoff_logitem_t;
  22. extern void xfs_qm_dquot_logitem_init(struct xfs_dquot *);
  23. extern xfs_qoff_logitem_t *xfs_qm_qoff_logitem_init(struct xfs_mount *,
  24. struct xfs_qoff_logitem *, uint);
  25. extern xfs_qoff_logitem_t *xfs_trans_get_qoff_item(struct xfs_trans *,
  26. struct xfs_qoff_logitem *, uint);
  27. extern void xfs_trans_log_quotaoff_item(struct xfs_trans *,
  28. struct xfs_qoff_logitem *);
  29. #endif /* __XFS_DQUOT_ITEM_H__ */