linux/fs/smb/client/fscache.c

// SPDX-License-Identifier: LGPL-2.1
/*
 *   CIFS filesystem cache interface
 *
 *   Copyright (c) 2010 Novell, Inc.
 *   Author(s): Suresh Jayaraman <[email protected]>
 *
 */
#include "fscache.h"
#include "cifsglob.h"
#include "cifs_debug.h"
#include "cifs_fs_sb.h"
#include "cifsproto.h"

/*
 * Key for fscache inode.  [!] Contents must match comparisons in cifs_find_inode().
 */
struct cifs_fscache_inode_key {} __packed;

static void cifs_fscache_fill_volume_coherency(
	struct cifs_tcon *tcon,
	struct cifs_fscache_volume_coherency_data *cd)
{}

int cifs_fscache_get_super_cookie(struct cifs_tcon *tcon)
{}

void cifs_fscache_release_super_cookie(struct cifs_tcon *tcon)
{}

void cifs_fscache_get_inode_cookie(struct inode *inode)
{}

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

void cifs_fscache_release_inode_cookie(struct inode *inode)
{}