113 lines
2.8 KiB
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
// SPDX-License-Identifier: GPL-2.0-only
/*
* Ceph cache definitions.
*
* Copyright (C) 2013 by Adfin Solutions, Inc. All Rights Reserved.
* Written by Milosz Tanski (milosz@adfin.com)
*/
#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)
{
struct ceph_inode_info *ci = ceph_inode(inode);
2026-01-29 22:25:33 +08:00
struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
/* No caching for filesystem? */
2026-01-21 18:59:54 +08:00
if (!fsc->fscache)
return;
2026-01-29 22:25:33 +08:00
/* Regular files only */
2026-01-21 18:59:54 +08:00
if (!S_ISREG(inode->i_mode))
return;
2026-01-29 22:25:33 +08:00
/* Only new inodes! */
if (!(inode->i_state & I_NEW))
2026-01-21 18:59:54 +08:00
return;
2026-01-29 22:25:33 +08:00
WARN_ON_ONCE(ci->netfs.cache);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
ci->netfs.cache =
fscache_acquire_cookie(fsc->fscache, 0,
&ci->i_vino, sizeof(ci->i_vino),
&ci->i_version, sizeof(ci->i_version),
i_size_read(inode));
if (ci->netfs.cache)
mapping_set_release_always(inode->i_mapping);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info *ci)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
fscache_relinquish_cookie(ceph_fscache_cookie(ci), false);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
void ceph_fscache_use_cookie(struct inode *inode, bool will_modify)
2026-01-21 18:59:54 +08:00
{
struct ceph_inode_info *ci = ceph_inode(inode);
2026-01-29 22:25:33 +08:00
fscache_use_cookie(ceph_fscache_cookie(ci), will_modify);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
void ceph_fscache_unuse_cookie(struct inode *inode, bool update)
2026-01-21 18:59:54 +08:00
{
struct ceph_inode_info *ci = ceph_inode(inode);
2026-01-29 22:25:33 +08:00
if (update) {
loff_t i_size = i_size_read(inode);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
fscache_unuse_cookie(ceph_fscache_cookie(ci),
&ci->i_version, &i_size);
} else {
fscache_unuse_cookie(ceph_fscache_cookie(ci), NULL, NULL);
2026-01-21 18:59:54 +08:00
}
}
2026-01-29 22:25:33 +08:00
void ceph_fscache_update(struct inode *inode)
2026-01-21 18:59:54 +08:00
{
struct ceph_inode_info *ci = ceph_inode(inode);
2026-01-29 22:25:33 +08:00
loff_t i_size = i_size_read(inode);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
fscache_update_cookie(ceph_fscache_cookie(ci), &ci->i_version, &i_size);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
void ceph_fscache_invalidate(struct inode *inode, bool dio_write)
2026-01-21 18:59:54 +08:00
{
struct ceph_inode_info *ci = ceph_inode(inode);
2026-01-29 22:25:33 +08:00
fscache_invalidate(ceph_fscache_cookie(ci),
&ci->i_version, i_size_read(inode),
dio_write ? FSCACHE_INVAL_DIO_WRITE : 0);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
int ceph_fscache_register_fs(struct ceph_fs_client* fsc, struct fs_context *fc)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
const struct ceph_fsid *fsid = &fsc->client->fsid;
const char *fscache_uniq = fsc->mount_options->fscache_uniq;
size_t uniq_len = fscache_uniq ? strlen(fscache_uniq) : 0;
char *name;
int err = 0;
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
name = kasprintf(GFP_KERNEL, "ceph,%pU%s%s", fsid, uniq_len ? "," : "",
uniq_len ? fscache_uniq : "");
if (!name)
return -ENOMEM;
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
fsc->fscache = fscache_acquire_volume(name, NULL, NULL, 0);
if (IS_ERR_OR_NULL(fsc->fscache)) {
errorfc(fc, "Unable to register fscache cookie for %s", name);
err = fsc->fscache ? PTR_ERR(fsc->fscache) : -EOPNOTSUPP;
fsc->fscache = NULL;
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
kfree(name);
return err;
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
fscache_relinquish_volume(fsc->fscache, NULL, false);
2026-01-21 18:59:54 +08:00
}