mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
508578f2f5
This patch corrects the SPDX License Identifier style in header files related to XFS File System support. For C header files Documentation/process/license-rules.rst mandates C-like comments. (opposed to C source files where C++ style should be used). Changes made by using a script provided by Joe Perches here: https://lkml.org/lkml/2019/2/7/46. Suggested-by: Joe Perches <joe@perches.com> Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
18 lines
529 B
C
18 lines
529 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2013 Red Hat, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
#ifndef __XFS_ATTR_REMOTE_H__
|
|
#define __XFS_ATTR_REMOTE_H__
|
|
|
|
int xfs_attr3_rmt_blocks(struct xfs_mount *mp, int attrlen);
|
|
|
|
int xfs_attr_rmtval_get(struct xfs_da_args *args);
|
|
int xfs_attr_rmtval_set(struct xfs_da_args *args);
|
|
int xfs_attr_rmtval_remove(struct xfs_da_args *args);
|
|
int xfs_attr_rmtval_stale(struct xfs_inode *ip, struct xfs_bmbt_irec *map,
|
|
xfs_buf_flags_t incore_flags);
|
|
|
|
#endif /* __XFS_ATTR_REMOTE_H__ */
|