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

TOMOYO Linux Cross Reference
Linux/net/ceph/ceph_strings.c

Version: ~ [ linux-6.4-rc3 ] ~ [ linux-6.3.4 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.30 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.113 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.180 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.243 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.283 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.315 ] ~ [ 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  * Ceph string constants
  4  */
  5 #include <linux/module.h>
  6 #include <linux/ceph/types.h>
  7 
  8 const char *ceph_entity_type_name(int type)
  9 {
 10         switch (type) {
 11         case CEPH_ENTITY_TYPE_MDS: return "mds";
 12         case CEPH_ENTITY_TYPE_OSD: return "osd";
 13         case CEPH_ENTITY_TYPE_MON: return "mon";
 14         case CEPH_ENTITY_TYPE_CLIENT: return "client";
 15         case CEPH_ENTITY_TYPE_AUTH: return "auth";
 16         default: return "unknown";
 17         }
 18 }
 19 EXPORT_SYMBOL(ceph_entity_type_name);
 20 
 21 const char *ceph_osd_op_name(int op)
 22 {
 23         switch (op) {
 24 #define GENERATE_CASE(op, opcode, str)  case CEPH_OSD_OP_##op: return (str);
 25 __CEPH_FORALL_OSD_OPS(GENERATE_CASE)
 26 #undef GENERATE_CASE
 27         default:
 28                 return "???";
 29         }
 30 }
 31 
 32 const char *ceph_osd_watch_op_name(int o)
 33 {
 34         switch (o) {
 35         case CEPH_OSD_WATCH_OP_UNWATCH:
 36                 return "unwatch";
 37         case CEPH_OSD_WATCH_OP_WATCH:
 38                 return "watch";
 39         case CEPH_OSD_WATCH_OP_RECONNECT:
 40                 return "reconnect";
 41         case CEPH_OSD_WATCH_OP_PING:
 42                 return "ping";
 43         default:
 44                 return "???";
 45         }
 46 }
 47 
 48 const char *ceph_osd_state_name(int s)
 49 {
 50         switch (s) {
 51         case CEPH_OSD_EXISTS:
 52                 return "exists";
 53         case CEPH_OSD_UP:
 54                 return "up";
 55         case CEPH_OSD_AUTOOUT:
 56                 return "autoout";
 57         case CEPH_OSD_NEW:
 58                 return "new";
 59         default:
 60                 return "???";
 61         }
 62 }
 63 

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

kernel.org | git.kernel.org | LWN.net | Project Home | Wiki (Japanese) | Wiki (English) | 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.

osdn.jp