mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
e47dcf113a
If the extended attributes look bad, try to sift through the rubble to find whatever keys/values we can, stage a new attribute structure in a temporary file and use the atomic extent swapping mechanism to commit the results in bulk. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
27 lines
799 B
C
27 lines
799 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (c) 2021-2024 Oracle. All Rights Reserved.
|
|
* Author: Darrick J. Wong <djwong@kernel.org>
|
|
*/
|
|
#ifndef __XFS_SCRUB_XFBLOB_H__
|
|
#define __XFS_SCRUB_XFBLOB_H__
|
|
|
|
struct xfblob {
|
|
struct xfile *xfile;
|
|
loff_t last_offset;
|
|
};
|
|
|
|
typedef loff_t xfblob_cookie;
|
|
|
|
int xfblob_create(const char *descr, struct xfblob **blobp);
|
|
void xfblob_destroy(struct xfblob *blob);
|
|
int xfblob_load(struct xfblob *blob, xfblob_cookie cookie, void *ptr,
|
|
uint32_t size);
|
|
int xfblob_store(struct xfblob *blob, xfblob_cookie *cookie, const void *ptr,
|
|
uint32_t size);
|
|
int xfblob_free(struct xfblob *blob, xfblob_cookie cookie);
|
|
unsigned long long xfblob_bytes(struct xfblob *blob);
|
|
void xfblob_truncate(struct xfblob *blob);
|
|
|
|
#endif /* __XFS_SCRUB_XFBLOB_H__ */
|