linux/fs/ceph/cache.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Ceph cache definitions.
 *
 *  Copyright (C) 2013 by Adfin Solutions, Inc. All Rights Reserved.
 *  Written by Milosz Tanski ([email protected])
 */

#include <linux/ceph/ceph_debug.h>

#include <linux/fs_context.h>
#include "super.h"
#include "cache.h"

void ceph_fscache_register_inode_cookie(struct inode *inode)
{}

void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info *ci)
{}

void ceph_fscache_use_cookie(struct inode *inode, bool will_modify)
{}

void ceph_fscache_unuse_cookie(struct inode *inode, bool update)
{}

void ceph_fscache_update(struct inode *inode)
{}

void ceph_fscache_invalidate(struct inode *inode, bool dio_write)
{}

int ceph_fscache_register_fs(struct ceph_fs_client* fsc, struct fs_context *fc)
{}

void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc)
{}