blob: cb1e8139c398f141b0692da3062c45396fde8e21 [file] [log] [blame]
Nicolai Stange9fd4dce2016-03-22 14:11:13 +01001/*
2 * internal.h - declarations internal to debugfs
3 *
4 * Copyright (C) 2016 Nicolai Stange <nicstange@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 *
10 */
11
12#ifndef _DEBUGFS_INTERNAL_H_
13#define _DEBUGFS_INTERNAL_H_
14
15struct file_operations;
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010016
17/* declared over in file.c */
18extern const struct file_operations debugfs_noop_file_operations;
19extern const struct file_operations debugfs_open_proxy_file_operations;
Nicolai Stange49d200d2016-03-22 14:11:14 +010020extern const struct file_operations debugfs_full_proxy_file_operations;
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010021
Nicolai Stange7c8d4692017-10-31 00:15:47 +010022struct debugfs_fsdata {
23 const struct file_operations *real_fops;
Nicolai Stangee9117a52017-10-31 00:15:48 +010024 refcount_t active_users;
25 struct completion active_users_drained;
Nicolai Stange7c8d4692017-10-31 00:15:47 +010026};
27
Nicolai Stange7d39bc52017-10-31 00:15:54 +010028/*
29 * A dentry's ->d_fsdata either points to the real fops or to a
30 * dynamically allocated debugfs_fsdata instance.
31 * In order to distinguish between these two cases, a real fops
32 * pointer gets its lowest bit set.
33 */
34#define DEBUGFS_FSDATA_IS_REAL_FOPS_BIT BIT(0)
35
Nicolai Stange9fd4dce2016-03-22 14:11:13 +010036#endif /* _DEBUGFS_INTERNAL_H_ */