inode.h (6bd1305735bc4346e0ca6cc0ff27517e8bab8f0d) inode.h (1dd7f9d98de0740b42f1ac3f0b1d8af9c76801de)
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _BCACHEFS_INODE_H
3#define _BCACHEFS_INODE_H
4
5#include "opts.h"
6
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _BCACHEFS_INODE_H
3#define _BCACHEFS_INODE_H
4
5#include "opts.h"
6
7#include <linux/math64.h>
8
9extern const char * const bch2_inode_opts[];
10
11const char *bch2_inode_invalid(const struct bch_fs *, struct bkey_s_c);
12void bch2_inode_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
13
14#define bch2_bkey_ops_inode (struct bkey_ops) { \
15 .key_invalid = bch2_inode_invalid, \
16 .val_to_text = bch2_inode_to_text, \

--- 98 unchanged lines hidden ---
7extern const char * const bch2_inode_opts[];
8
9const char *bch2_inode_invalid(const struct bch_fs *, struct bkey_s_c);
10void bch2_inode_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
11
12#define bch2_bkey_ops_inode (struct bkey_ops) { \
13 .key_invalid = bch2_inode_invalid, \
14 .val_to_text = bch2_inode_to_text, \

--- 98 unchanged lines hidden ---