mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-05-03 08:19:58 -05:00
110705db8d
Things not done because probably disruptive: * kmod filesystem string * sysctl/debugfs/trace * metrics names * xmon instance names Some of these might be renamed too, but starting with a relatively safe set.
13 lines
193 B
C
13 lines
193 B
C
#ifndef _TERNFS_SYSFS_H
|
|
#define _TERNFS_SYSFS_H
|
|
|
|
#include <linux/init.h>
|
|
|
|
extern const char* ternfs_revision;
|
|
|
|
int __init ternfs_sysfs_init(void);
|
|
void __cold ternfs_sysfs_exit(void);
|
|
|
|
#endif
|
|
|