xfs_itable.h (976e3645923bdd2fe7893aae33fd7a21098bfb28) xfs_itable.h (f736d93d76d3e97d6986c6d26c8eaa32536ccc5c)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
4 */
5#ifndef __XFS_ITABLE_H__
6#define __XFS_ITABLE_H__
7
8/* In-memory representation of a userspace request for batch inode data. */
9struct xfs_ibulk {
10 struct xfs_mount *mp;
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
4 */
5#ifndef __XFS_ITABLE_H__
6#define __XFS_ITABLE_H__
7
8/* In-memory representation of a userspace request for batch inode data. */
9struct xfs_ibulk {
10 struct xfs_mount *mp;
11 struct user_namespace *mnt_userns;
11 void __user *ubuffer; /* user output buffer */
12 xfs_ino_t startino; /* start with this inode */
13 unsigned int icount; /* number of elements in ubuffer */
14 unsigned int ocount; /* number of records returned */
15 unsigned int flags; /* see XFS_IBULK_FLAG_* */
16};
17
18/* Only iterate within the same AG as startino */

--- 46 unchanged lines hidden ---
12 void __user *ubuffer; /* user output buffer */
13 xfs_ino_t startino; /* start with this inode */
14 unsigned int icount; /* number of elements in ubuffer */
15 unsigned int ocount; /* number of records returned */
16 unsigned int flags; /* see XFS_IBULK_FLAG_* */
17};
18
19/* Only iterate within the same AG as startino */

--- 46 unchanged lines hidden ---