Home
last modified time | relevance | path

Searched refs:BCH_ERR_START (Results 1 – 2 of 2) sorted by relevance

/linux/fs/bcachefs/
H A Derrcode.c10 #define x(class, err) [BCH_ERR_##err - BCH_ERR_START] = #err,
17 #define x(class, err) [BCH_ERR_##err - BCH_ERR_START] = class,
30 if (err >= BCH_ERR_START) in bch2_err_str()
31 errstr = bch2_errcode_strs[err - BCH_ERR_START]; in bch2_err_str()
47 while (err >= BCH_ERR_START && err != class) in __bch2_err_matches()
48 err = bch2_errcode_parents[err - BCH_ERR_START]; in __bch2_err_matches()
58 while (std_err >= BCH_ERR_START && bch2_errcode_parents[std_err - BCH_ERR_START]) in __bch2_err_class()
59 std_err = bch2_errcode_parents[std_err - BCH_ERR_START]; in __bch2_err_class()
H A Derrcode.h278 BCH_ERR_START = 2048, enumerator