mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
375aa21d36
This makes it harder for accidental or malicious changes to xfs_xattr_handlers at runtime. Cc: "Darrick J. Wong" <djwong@kernel.org> Cc: linux-xfs@vger.kernel.org Signed-off-by: Wedson Almeida Filho <walmeida@microsoft.com> Link: https://lore.kernel.org/r/20230930050033.41174-27-wedsonaf@gmail.com Reviewed-by: "Darrick J. Wong" <djwong@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
14 lines
308 B
C
14 lines
308 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2000-2005 Silicon Graphics, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
#ifndef __XFS_XATTR_H__
|
|
#define __XFS_XATTR_H__
|
|
|
|
int xfs_attr_change(struct xfs_da_args *args);
|
|
|
|
extern const struct xattr_handler * const xfs_xattr_handlers[];
|
|
|
|
#endif /* __XFS_XATTR_H__ */
|