mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
efc2efeba1
The LARP patchset added an awkward coupling point between libxfs and what would be libxlog, if the XFS log were actually its own library. Move the code that sets up logged xattr updates out of libxfs and into xfs_xattr.c so that libxfs no longer has to know about xlog_* functions. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
14 lines
301 B
C
14 lines
301 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 *xfs_xattr_handlers[];
|
|
|
|
#endif /* __XFS_XATTR_H__ */
|