blob: 85d94134001bcd7a431b3094882b442240f15986 [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Masahiro Yamadafa60ce22021-05-06 18:06:44 -07002/*
Mark Fashehccd979b2005-12-15 14:31:24 -08003 * uptodate.h
4 *
5 * Cluster uptodate tracking
6 *
7 * Copyright (C) 2002, 2004, 2005 Oracle. All rights reserved.
Mark Fashehccd979b2005-12-15 14:31:24 -08008 */
9
10#ifndef OCFS2_UPTODATE_H
11#define OCFS2_UPTODATE_H
12
Joel Becker6e5a3d72009-02-10 19:00:37 -080013/*
14 * The caching code relies on locking provided by the user of
15 * struct ocfs2_caching_info. These operations connect that up.
16 */
17struct ocfs2_caching_operations {
18 /*
19 * A u64 representing the owning structure. Usually this
20 * is the block number (i_blkno or whatnot). This is used so
21 * that caching log messages can identify the owning structure.
22 */
23 u64 (*co_owner)(struct ocfs2_caching_info *ci);
24
Joel Becker8cb471e2009-02-10 20:00:41 -080025 /* The superblock is needed during I/O. */
26 struct super_block *(*co_get_super)(struct ocfs2_caching_info *ci);
Joel Becker6e5a3d72009-02-10 19:00:37 -080027 /*
28 * Lock and unlock the caching data. These will not sleep, and
29 * should probably be spinlocks.
30 */
31 void (*co_cache_lock)(struct ocfs2_caching_info *ci);
32 void (*co_cache_unlock)(struct ocfs2_caching_info *ci);
33
34 /*
35 * Lock and unlock for disk I/O. These will sleep, and should
36 * be mutexes.
37 */
38 void (*co_io_lock)(struct ocfs2_caching_info *ci);
39 void (*co_io_unlock)(struct ocfs2_caching_info *ci);
40};
41
Mark Fashehccd979b2005-12-15 14:31:24 -080042int __init init_ocfs2_uptodate_cache(void);
Adrian Bunk0c6c98f2006-01-07 20:07:02 +010043void exit_ocfs2_uptodate_cache(void);
Mark Fashehccd979b2005-12-15 14:31:24 -080044
Joel Becker47460d62009-02-10 16:05:07 -080045void ocfs2_metadata_cache_init(struct ocfs2_caching_info *ci,
Joel Becker6e5a3d72009-02-10 19:00:37 -080046 const struct ocfs2_caching_operations *ops);
Joel Becker8cb471e2009-02-10 20:00:41 -080047void ocfs2_metadata_cache_purge(struct ocfs2_caching_info *ci);
Joel Becker66fb3452009-02-12 15:24:40 -080048void ocfs2_metadata_cache_exit(struct ocfs2_caching_info *ci);
Mark Fashehccd979b2005-12-15 14:31:24 -080049
Joel Becker8cb471e2009-02-10 20:00:41 -080050u64 ocfs2_metadata_cache_owner(struct ocfs2_caching_info *ci);
Joel Becker8cb471e2009-02-10 20:00:41 -080051void ocfs2_metadata_cache_io_lock(struct ocfs2_caching_info *ci);
52void ocfs2_metadata_cache_io_unlock(struct ocfs2_caching_info *ci);
53
54int ocfs2_buffer_uptodate(struct ocfs2_caching_info *ci,
Mark Fashehccd979b2005-12-15 14:31:24 -080055 struct buffer_head *bh);
Joel Becker8cb471e2009-02-10 20:00:41 -080056void ocfs2_set_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_new_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_remove_from_cache(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_xattr_clusters_from_cache(struct ocfs2_caching_info *ci,
Tao Maac11c822008-08-18 17:38:47 +080063 sector_t block,
64 u32 c_len);
Joel Becker8cb471e2009-02-10 20:00:41 -080065int ocfs2_buffer_read_ahead(struct ocfs2_caching_info *ci,
Mark Fashehaa958872006-04-21 13:49:02 -070066 struct buffer_head *bh);
Mark Fashehccd979b2005-12-15 14:31:24 -080067
68#endif /* OCFS2_UPTODATE_H */