Linux Audio

Check our new training course

Linux kernel drivers training

Mar 31-Apr 9, 2025, special US time zones
Register
Loading...
v6.9.4
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
 4 * All Rights Reserved.
 5 */
 6#ifndef __XFS_XATTR_H__
 7#define __XFS_XATTR_H__
 8
 9int xfs_attr_change(struct xfs_da_args *args);
 
10
11extern const struct xattr_handler * const xfs_xattr_handlers[];
12
13#endif /* __XFS_XATTR_H__ */
v6.13.7
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
 4 * All Rights Reserved.
 5 */
 6#ifndef __XFS_XATTR_H__
 7#define __XFS_XATTR_H__
 8
 9enum xfs_attr_update;
10int xfs_attr_change(struct xfs_da_args *args, enum xfs_attr_update op);
11
12extern const struct xattr_handler * const xfs_xattr_handlers[];
13
14#endif /* __XFS_XATTR_H__ */