[BACK]Return to xfs_trans_priv.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / fs / xfs

File: [Development] / linux-2.6-xfs / fs / xfs / xfs_trans_priv.h (download)

Revision 1.7, Thu Mar 9 04:12:23 1995 UTC (22 years, 7 months ago) by ajs
Branch: MAIN
Changes since 1.6: +2 -2 lines

Change prototypes.



#ifndef _XFS_TRANS_PRIV_H
#define	_XFS_TRANS_PRIV_H

/*
 * From xfs_trans_async.c
 */
int		xfs_trans_any_async(xfs_mount_t *);
void		xfs_trans_add_async(xfs_trans_t *);
xfs_trans_t	*xfs_trans_get_async(xfs_mount_t *);

/*
 * From xfs_trans_item.c
 */
xfs_log_item_desc_t	*xfs_trans_add_item(xfs_trans_t *,
					    xfs_log_item_t *);
void			xfs_trans_free_item(xfs_trans_t *,
					    xfs_log_item_desc_t *);
xfs_log_item_desc_t	*xfs_trans_find_item(xfs_trans_t *,
					     xfs_log_item_t *);
xfs_log_item_desc_t	*xfs_trans_first_item(xfs_trans_t *);
xfs_log_item_desc_t	*xfs_trans_next_item(xfs_trans_t *,
					     xfs_log_item_desc_t *);
void			xfs_trans_free_items(xfs_trans_t *);
void			xfs_trans_unlock_items(xfs_trans_t *);

/*
 * From xfs_trans_ail.c
 */
void		xfs_trans_update_ail(xfs_mount_t *, xfs_log_item_t *,
				     xfs_lsn_t, int);
void		xfs_trans_delete_ail(xfs_mount_t *, xfs_log_item_t *, int);
xfs_log_item_t	*xfs_trans_first_ail(xfs_mount_t *, int *);
xfs_log_item_t	*xfs_trans_next_ail(xfs_mount_t *, xfs_log_item_t *,
				    int *, int *);


#endif	/* _XFS_TRANS_PRIV_H */