/* SPDX-License-Identifier: GPL-2.0-only */ /* * Common helpers for stackable filesystems and backing files. * * Copyright (C) 2023 CTERA Networks. */ #ifndef _LINUX_BACKING_FILE_H #define _LINUX_BACKING_FILE_H #include struct file *backing_file_open(const struct path *user_path, int flags, const struct path *real_path, const struct cred *cred); #endif /* _LINUX_BACKING_FILE_H */