2019-05-28 16:57:16 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2013-08-21 21:29:54 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2020-06-01 14:10:21 +00:00
|
|
|
#include <linux/netfs.h>
|
|
|
|
|
2013-08-21 21:29:54 +00:00
|
|
|
#ifdef CONFIG_CEPH_FSCACHE
|
2021-12-07 13:44:50 +00:00
|
|
|
#include <linux/fscache.h>
|
2013-08-21 21:29:54 +00:00
|
|
|
|
2019-03-25 16:38:32 +00:00
|
|
|
int ceph_fscache_register_fs(struct ceph_fs_client* fsc, struct fs_context *fc);
|
2013-08-21 21:29:54 +00:00
|
|
|
void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc);
|
|
|
|
|
2016-05-18 07:25:03 +00:00
|
|
|
void ceph_fscache_register_inode_cookie(struct inode *inode);
|
2013-08-21 21:29:54 +00:00
|
|
|
void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci);
|
2021-12-07 13:44:50 +00:00
|
|
|
|
|
|
|
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);
|
2013-08-21 21:29:54 +00:00
|
|
|
|
2020-06-01 14:10:21 +00:00
|
|
|
static inline struct fscache_cookie *ceph_fscache_cookie(struct ceph_inode_info *ci)
|
|
|
|
{
|
2022-06-09 22:04:01 +00:00
|
|
|
return netfs_i_cookie(&ci->netfs);
|
2020-06-01 14:10:21 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
static inline void ceph_fscache_resize(struct inode *inode, loff_t to)
|
2013-08-21 21:29:54 +00:00
|
|
|
{
|
2021-12-07 13:44:50 +00:00
|
|
|
struct ceph_inode_info *ci = ceph_inode(inode);
|
|
|
|
struct fscache_cookie *cookie = ceph_fscache_cookie(ci);
|
|
|
|
|
|
|
|
if (cookie) {
|
|
|
|
ceph_fscache_use_cookie(inode, true);
|
|
|
|
fscache_resize_cookie(cookie, to);
|
|
|
|
ceph_fscache_unuse_cookie(inode, true);
|
|
|
|
}
|
2013-08-21 21:29:54 +00:00
|
|
|
}
|
|
|
|
|
2023-11-27 13:58:07 +00:00
|
|
|
static inline int ceph_fscache_unpin_writeback(struct inode *inode,
|
2021-12-07 13:44:50 +00:00
|
|
|
struct writeback_control *wbc)
|
2020-06-01 14:10:21 +00:00
|
|
|
{
|
2023-11-27 13:58:07 +00:00
|
|
|
return netfs_unpin_writeback(inode, wbc);
|
2021-12-07 13:44:50 +00:00
|
|
|
}
|
|
|
|
|
2023-11-27 13:58:07 +00:00
|
|
|
#define ceph_fscache_dirty_folio netfs_dirty_folio
|
2020-06-01 14:10:21 +00:00
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
static inline bool ceph_is_cache_enabled(struct inode *inode)
|
2013-08-21 21:29:54 +00:00
|
|
|
{
|
2021-12-07 13:44:50 +00:00
|
|
|
return fscache_cookie_enabled(ceph_fscache_cookie(ceph_inode(inode)));
|
2013-08-21 21:29:54 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
#else /* CONFIG_CEPH_FSCACHE */
|
2019-03-25 16:38:32 +00:00
|
|
|
static inline int ceph_fscache_register_fs(struct ceph_fs_client* fsc,
|
|
|
|
struct fs_context *fc)
|
2013-08-21 21:29:54 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ceph_fscache_unregister_fs(struct ceph_fs_client* fsc)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
static inline void ceph_fscache_register_inode_cookie(struct inode *inode)
|
2020-06-01 14:10:21 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
static inline void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci)
|
2016-05-18 07:25:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
static inline void ceph_fscache_use_cookie(struct inode *inode, bool will_modify)
|
2016-05-18 07:25:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
static inline void ceph_fscache_unuse_cookie(struct inode *inode, bool update)
|
2013-08-21 21:29:54 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
static inline void ceph_fscache_update(struct inode *inode)
|
2013-08-21 21:29:54 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-12-07 13:44:50 +00:00
|
|
|
static inline void ceph_fscache_invalidate(struct inode *inode, bool dio_write)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct fscache_cookie *ceph_fscache_cookie(struct ceph_inode_info *ci)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ceph_fscache_resize(struct inode *inode, loff_t to)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-11-27 13:58:07 +00:00
|
|
|
static inline int ceph_fscache_unpin_writeback(struct inode *inode,
|
|
|
|
struct writeback_control *wbc)
|
2021-12-07 13:44:50 +00:00
|
|
|
{
|
2023-11-27 13:58:07 +00:00
|
|
|
return 0;
|
2021-12-07 13:44:50 +00:00
|
|
|
}
|
|
|
|
|
2023-11-27 13:58:07 +00:00
|
|
|
#define ceph_fscache_dirty_folio filemap_dirty_folio
|
2021-12-07 13:44:50 +00:00
|
|
|
|
2020-06-01 14:10:21 +00:00
|
|
|
static inline bool ceph_is_cache_enabled(struct inode *inode)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2021-12-07 13:44:50 +00:00
|
|
|
#endif /* CONFIG_CEPH_FSCACHE */
|
|
|
|
|
|
|
|
#endif
|