X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fmds%2Fmds_table_types.h;fp=src%2Fceph%2Fsrc%2Fmds%2Fmds_table_types.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=4003068bfd3042ece70ce51c4acac8f6b6f08303;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/mds/mds_table_types.h b/src/ceph/src/mds/mds_table_types.h deleted file mode 100644 index 4003068..0000000 --- a/src/ceph/src/mds/mds_table_types.h +++ /dev/null @@ -1,75 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab -/* - * Ceph - scalable distributed file system - * - * Copyright (C) 2004-2006 Sage Weil - * - * This is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software - * Foundation. See file COPYING. - * - */ - -#ifndef CEPH_MDSTABLETYPES_H -#define CEPH_MDSTABLETYPES_H - -// MDS TABLES - -enum { - TABLE_ANCHOR, - TABLE_SNAP, -}; - -inline const char *get_mdstable_name(int t) { - switch (t) { - case TABLE_ANCHOR: return "anchortable"; - case TABLE_SNAP: return "snaptable"; - default: ceph_abort(); - } -} - -enum { - TABLESERVER_OP_QUERY = 1, - TABLESERVER_OP_QUERY_REPLY = -2, - TABLESERVER_OP_PREPARE = 3, - TABLESERVER_OP_AGREE = -4, - TABLESERVER_OP_COMMIT = 5, - TABLESERVER_OP_ACK = -6, - TABLESERVER_OP_ROLLBACK = 7, - TABLESERVER_OP_SERVER_UPDATE = 8, - TABLESERVER_OP_SERVER_READY = -9, -}; - -inline const char *get_mdstableserver_opname(int op) { - switch (op) { - case TABLESERVER_OP_QUERY: return "query"; - case TABLESERVER_OP_QUERY_REPLY: return "query_reply"; - case TABLESERVER_OP_PREPARE: return "prepare"; - case TABLESERVER_OP_AGREE: return "agree"; - case TABLESERVER_OP_COMMIT: return "commit"; - case TABLESERVER_OP_ACK: return "ack"; - case TABLESERVER_OP_ROLLBACK: return "rollback"; - case TABLESERVER_OP_SERVER_UPDATE: return "server_update"; - case TABLESERVER_OP_SERVER_READY: return "server_ready"; - default: ceph_abort(); return 0; - } -} - -enum { - TABLE_OP_CREATE, - TABLE_OP_UPDATE, - TABLE_OP_DESTROY, -}; - -inline const char *get_mdstable_opname(int op) { - switch (op) { - case TABLE_OP_CREATE: return "create"; - case TABLE_OP_UPDATE: return "update"; - case TABLE_OP_DESTROY: return "destroy"; - default: ceph_abort(); return 0; - } -} - -#endif