Linux Audio

Check our new training course

Loading...
v4.17
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef XFS_DISCARD_H
 3#define XFS_DISCARD_H 1
 4
 5struct fstrim_range;
 6struct list_head;
 
 7
 8extern int	xfs_ioc_trim(struct xfs_mount *, struct fstrim_range __user *);
 
 9
10#endif /* XFS_DISCARD_H */
v6.8
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef XFS_DISCARD_H
 3#define XFS_DISCARD_H 1
 4
 5struct fstrim_range;
 6struct xfs_mount;
 7struct xfs_busy_extents;
 8
 9int xfs_discard_extents(struct xfs_mount *mp, struct xfs_busy_extents *busy);
10int xfs_ioc_trim(struct xfs_mount *mp, struct fstrim_range __user *fstrim);
11
12#endif /* XFS_DISCARD_H */