xref: /openbmc/linux/fs/cachefiles/interface.c (revision d1065b0a)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* FS-Cache interface to CacheFiles
3  *
4  * Copyright (C) 2021 Red Hat, Inc. All Rights Reserved.
5  * Written by David Howells (dhowells@redhat.com)
6  */
7 
8 #include <linux/slab.h>
9 #include <linux/mount.h>
10 #include <linux/xattr.h>
11 #include <linux/file.h>
12 #include <linux/falloc.h>
13 #include <trace/events/fscache.h>
14 #include "internal.h"
15 
16 const struct fscache_cache_ops cachefiles_cache_ops = {
17 	.name			= "cachefiles",
18 };
19