19 lines
461 B
C
19 lines
461 B
C
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
/* FS-Cache interface to CacheFiles
|
||
|
*
|
||
|
* Copyright (C) 2021 Red Hat, Inc. All Rights Reserved.
|
||
|
* Written by David Howells (dhowells@redhat.com)
|
||
|
*/
|
||
|
|
||
|
#include <linux/slab.h>
|
||
|
#include <linux/mount.h>
|
||
|
#include <linux/xattr.h>
|
||
|
#include <linux/file.h>
|
||
|
#include <linux/falloc.h>
|
||
|
#include <trace/events/fscache.h>
|
||
|
#include "internal.h"
|
||
|
|
||
|
const struct fscache_cache_ops cachefiles_cache_ops = {
|
||
|
.name = "cachefiles",
|
||
|
};
|