149 lines
3.6 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)
*/
#ifndef _CEPH_CACHE_H
#define _CEPH_CACHE_H
2026-01-29 22:25:33 +08:00
#include <linux/netfs.h>
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
#ifdef CONFIG_CEPH_FSCACHE
#include <linux/fscache.h>
2026-01-21 18:59:54 +08:00
int ceph_fscache_register_fs(struct ceph_fs_client* fsc, struct fs_context *fc);
void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc);
void ceph_fscache_register_inode_cookie(struct inode *inode);
void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci);
2026-01-29 22:25:33 +08:00
void ceph_fscache_use_cookie(struct inode *inode, bool will_modify);
void ceph_fscache_unuse_cookie(struct inode *inode, bool update);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
void ceph_fscache_update(struct inode *inode);
void ceph_fscache_invalidate(struct inode *inode, bool dio_write);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
static inline struct fscache_cookie *ceph_fscache_cookie(struct ceph_inode_info *ci)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
return netfs_i_cookie(&ci->netfs);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_resize(struct inode *inode, loff_t to)
2026-01-21 18:59:54 +08:00
{
struct ceph_inode_info *ci = ceph_inode(inode);
2026-01-29 22:25:33 +08:00
struct fscache_cookie *cookie = ceph_fscache_cookie(ci);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
if (cookie) {
ceph_fscache_use_cookie(inode, true);
fscache_resize_cookie(cookie, to);
ceph_fscache_unuse_cookie(inode, true);
}
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_unpin_writeback(struct inode *inode,
struct writeback_control *wbc)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
fscache_unpin_writeback(wbc, ceph_fscache_cookie(ceph_inode(inode)));
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline int ceph_fscache_dirty_folio(struct address_space *mapping,
struct folio *folio)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
struct ceph_inode_info *ci = ceph_inode(mapping->host);
return fscache_dirty_folio(mapping, folio, ceph_fscache_cookie(ci));
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline int ceph_begin_cache_operation(struct netfs_io_request *rreq)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
struct fscache_cookie *cookie = ceph_fscache_cookie(ceph_inode(rreq->inode));
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
return fscache_begin_read_operation(&rreq->cache_resources, cookie);
}
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
static inline bool ceph_is_cache_enabled(struct inode *inode)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
return fscache_cookie_enabled(ceph_fscache_cookie(ceph_inode(inode)));
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_note_page_release(struct inode *inode)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
struct ceph_inode_info *ci = ceph_inode(inode);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
fscache_note_page_release(ceph_fscache_cookie(ci));
}
#else /* CONFIG_CEPH_FSCACHE */
2026-01-21 18:59:54 +08:00
static inline int ceph_fscache_register_fs(struct ceph_fs_client* fsc,
struct fs_context *fc)
{
return 0;
}
static inline void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc)
{
}
static inline void ceph_fscache_register_inode_cookie(struct inode *inode)
{
}
static inline void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci)
{
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_use_cookie(struct inode *inode, bool will_modify)
2026-01-21 18:59:54 +08:00
{
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_unuse_cookie(struct inode *inode, bool update)
2026-01-21 18:59:54 +08:00
{
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_update(struct inode *inode)
2026-01-21 18:59:54 +08:00
{
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_invalidate(struct inode *inode, bool dio_write)
2026-01-21 18:59:54 +08:00
{
}
2026-01-29 22:25:33 +08:00
static inline struct fscache_cookie *ceph_fscache_cookie(struct ceph_inode_info *ci)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
return NULL;
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_resize(struct inode *inode, loff_t to)
2026-01-21 18:59:54 +08:00
{
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_unpin_writeback(struct inode *inode,
struct writeback_control *wbc)
2026-01-21 18:59:54 +08:00
{
}
2026-01-29 22:25:33 +08:00
static inline int ceph_fscache_dirty_folio(struct address_space *mapping,
struct folio *folio)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
return filemap_dirty_folio(mapping, folio);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline bool ceph_is_cache_enabled(struct inode *inode)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
return false;
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline int ceph_begin_cache_operation(struct netfs_io_request *rreq)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
return -ENOBUFS;
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
static inline void ceph_fscache_note_page_release(struct inode *inode)
2026-01-21 18:59:54 +08:00
{
}
2026-01-29 22:25:33 +08:00
#endif /* CONFIG_CEPH_FSCACHE */
2026-01-21 18:59:54 +08:00
#endif