~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/bcachefs/errcode.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 
  3 #include "bcachefs.h"
  4 #include "errcode.h"
  5 #include "trace.h"
  6 
  7 #include <linux/errname.h>
  8 
  9 static const char * const bch2_errcode_strs[] = {
 10 #define x(class, err) [BCH_ERR_##err - BCH_ERR_START] = #err,
 11         BCH_ERRCODES()
 12 #undef x
 13         NULL
 14 };
 15 
 16 static unsigned bch2_errcode_parents[] = {
 17 #define x(class, err) [BCH_ERR_##err - BCH_ERR_START] = class,
 18         BCH_ERRCODES()
 19 #undef x
 20 };
 21 
 22 const char *bch2_err_str(int err)
 23 {
 24         const char *errstr;
 25 
 26         err = abs(err);
 27 
 28         BUG_ON(err >= BCH_ERR_MAX);
 29 
 30         if (err >= BCH_ERR_START)
 31                 errstr = bch2_errcode_strs[err - BCH_ERR_START];
 32         else if (err)
 33                 errstr = errname(err);
 34         else
 35                 errstr = "(No error)";
 36         return errstr ?: "(Invalid error)";
 37 }
 38 
 39 bool __bch2_err_matches(int err, int class)
 40 {
 41         err     = abs(err);
 42         class   = abs(class);
 43 
 44         BUG_ON(err      >= BCH_ERR_MAX);
 45         BUG_ON(class    >= BCH_ERR_MAX);
 46 
 47         while (err >= BCH_ERR_START && err != class)
 48                 err = bch2_errcode_parents[err - BCH_ERR_START];
 49 
 50         return err == class;
 51 }
 52 
 53 int __bch2_err_class(int bch_err)
 54 {
 55         int std_err = -bch_err;
 56         BUG_ON((unsigned) std_err >= BCH_ERR_MAX);
 57 
 58         while (std_err >= BCH_ERR_START && bch2_errcode_parents[std_err - BCH_ERR_START])
 59                 std_err = bch2_errcode_parents[std_err - BCH_ERR_START];
 60 
 61         trace_error_downcast(bch_err, std_err, _RET_IP_);
 62 
 63         return -std_err;
 64 }
 65 
 66 const char *bch2_blk_status_to_str(blk_status_t status)
 67 {
 68         if (status == BLK_STS_REMOVED)
 69                 return "device removed";
 70         return blk_status_to_str(status);
 71 }
 72 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php