mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-04-28 13:49:27 -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
177 B
C
13 lines
177 B
C
#ifndef _TERNFS_ERR_H
|
|
#define _TERNFS_ERR_H
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include "bincode.h"
|
|
|
|
bool ternfs_unexpected_error(int err);
|
|
int ternfs_error_to_linux(int err);
|
|
|
|
#endif
|
|
|