blob: 77a30cae4879865d20e02d097e36c0d0e9f4aa1e [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Mark Fashehccd979b2005-12-15 14:31:24 -08002/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * uptodate.h
6 *
7 * Cluster uptodate tracking
8 *
9 * Copyright (C) 2002, 2004, 2005 Oracle. All rights reserved.
Mark Fashehccd979b2005-12-15 14:31:24 -080010 */
11
12#ifndef OCFS2_UPTODATE_H
13#define OCFS2_UPTODATE_H
14
Joel Becker6e5a3d72009-02-10 19:00:37 -080015/*
16 * The caching code relies on locking provided by the user of
17 * struct ocfs2_caching_info. These operations connect that up.
18 */
19struct ocfs2_caching_operations {
20 /*
21 * A u64 representing the owning structure. Usually this
22 * is the block number (i_blkno or whatnot). This is used so
23 * that caching log messages can identify the owning structure.
24 */
25 u64 (*co_owner)(struct ocfs2_caching_info *ci);
26
Joel Becker8cb471e2009-02-10 20:00:41 -080027 /* The superblock is needed during I/O. */
28 struct super_block *(*co_get_super)(struct ocfs2_caching_info *ci);
Joel Becker6e5a3d72009-02-10 19:00:37 -080029 /*
30 * Lock and unlock the caching data. These will not sleep, and
31 * should probably be spinlocks.
32 */
33 void (*co_cache_lock)(struct ocfs2_caching_info *ci);
34 void (*co_cache_unlock)(struct ocfs2_caching_info *ci);
35
36 /*
37 * Lock and unlock for disk I/O. These will sleep, and should
38 * be mutexes.
39 */
40 void (*co_io_lock)(struct ocfs2_caching_info *ci);
41 void (*co_io_unlock)(struct ocfs2_caching_info *ci);
42};
43
Mark Fashehccd979b2005-12-15 14:31:24 -080044int __init init_ocfs2_uptodate_cache(void);
Adrian Bunk0c6c98f2006-01-07 20:07:02 +010045void exit_ocfs2_uptodate_cache(void);
Mark Fashehccd979b2005-12-15 14:31:24 -080046
Joel Becker47460d62009-02-10 16:05:07 -080047void ocfs2_metadata_cache_init(struct ocfs2_caching_info *ci,
Joel Becker6e5a3d72009-02-10 19:00:37 -080048 const struct ocfs2_caching_operations *ops);
Joel Becker8cb471e2009-02-10 20:00:41 -080049void ocfs2_metadata_cache_purge(struct ocfs2_caching_info *ci);
Joel Becker66fb3452009-02-12 15:24:40 -080050void ocfs2_metadata_cache_exit(struct ocfs2_caching_info *ci);
Mark Fashehccd979b2005-12-15 14:31:24 -080051
Joel Becker8cb471e2009-02-10 20:00:41 -080052u64 ocfs2_metadata_cache_owner(struct ocfs2_caching_info *ci);
Joel Becker8cb471e2009-02-10 20:00:41 -080053void ocfs2_metadata_cache_io_lock(struct ocfs2_caching_info *ci);
54void ocfs2_metadata_cache_io_unlock(struct ocfs2_caching_info *ci);
55
56int ocfs2_buffer_uptodate(struct ocfs2_caching_info *ci,
Mark Fashehccd979b2005-12-15 14:31:24 -080057 struct buffer_head *bh);
Joel Becker8cb471e2009-02-10 20:00:41 -080058void ocfs2_set_buffer_uptodate(struct ocfs2_caching_info *ci,
Mark Fashehccd979b2005-12-15 14:31:24 -080059 struct buffer_head *bh);
Joel Becker8cb471e2009-02-10 20:00:41 -080060void ocfs2_set_new_buffer_uptodate(struct ocfs2_caching_info *ci,
Mark Fashehccd979b2005-12-15 14:31:24 -080061 struct buffer_head *bh);
Joel Becker8cb471e2009-02-10 20:00:41 -080062void ocfs2_remove_from_cache(struct ocfs2_caching_info *ci,
Mark Fashehccd979b2005-12-15 14:31:24 -080063 struct buffer_head *bh);
Joel Becker8cb471e2009-02-10 20:00:41 -080064void ocfs2_remove_xattr_clusters_from_cache(struct ocfs2_caching_info *ci,
Tao Maac11c822008-08-18 17:38:47 +080065 sector_t block,
66 u32 c_len);
Joel Becker8cb471e2009-02-10 20:00:41 -080067int ocfs2_buffer_read_ahead(struct ocfs2_caching_info *ci,
Mark Fashehaa958872006-04-21 13:49:02 -070068 struct buffer_head *bh);
Mark Fashehccd979b2005-12-15 14:31:24 -080069
70#endif /* OCFS2_UPTODATE_H */