2018-06-05 19:42:14 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2008-11-25 21:20:08 -06:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Silicon Graphics, Inc.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*/
|
|
|
|
#ifndef __XFS_IOCTL_H__
|
|
|
|
#define __XFS_IOCTL_H__
|
|
|
|
|
2020-02-26 17:30:38 -08:00
|
|
|
struct xfs_bstat;
|
|
|
|
struct xfs_ibulk;
|
|
|
|
struct xfs_inogrp;
|
|
|
|
|
2013-08-12 20:49:48 +10:00
|
|
|
int
|
|
|
|
xfs_ioc_swapext(
|
|
|
|
xfs_swapext_t *sxp);
|
|
|
|
|
2021-04-07 14:36:43 +02:00
|
|
|
extern int
|
|
|
|
xfs_fileattr_get(
|
|
|
|
struct dentry *dentry,
|
|
|
|
struct fileattr *fa);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
xfs_fileattr_set(
|
2023-01-13 12:49:21 +01:00
|
|
|
struct mnt_idmap *idmap,
|
2021-04-07 14:36:43 +02:00
|
|
|
struct dentry *dentry,
|
|
|
|
struct fileattr *fa);
|
|
|
|
|
2008-12-03 07:55:34 -05:00
|
|
|
extern long
|
2008-12-09 04:47:33 -05:00
|
|
|
xfs_file_ioctl(
|
|
|
|
struct file *filp,
|
2008-12-03 07:55:34 -05:00
|
|
|
unsigned int cmd,
|
2008-12-09 04:47:33 -05:00
|
|
|
unsigned long p);
|
2008-12-03 07:55:34 -05:00
|
|
|
|
|
|
|
extern long
|
2008-12-09 04:47:33 -05:00
|
|
|
xfs_file_compat_ioctl(
|
2008-12-03 07:55:34 -05:00
|
|
|
struct file *file,
|
|
|
|
unsigned int cmd,
|
|
|
|
unsigned long arg);
|
|
|
|
|
2019-07-03 20:36:26 -07:00
|
|
|
int xfs_fsbulkstat_one_fmt(struct xfs_ibulk *breq,
|
2019-07-03 20:36:26 -07:00
|
|
|
const struct xfs_bulkstat *bstat);
|
2019-07-03 20:36:27 -07:00
|
|
|
int xfs_fsinumbers_fmt(struct xfs_ibulk *breq, const struct xfs_inumbers *igrp);
|
2019-07-02 09:39:40 -07:00
|
|
|
|
2008-11-25 21:20:08 -06:00
|
|
|
#endif
|