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