From: adilger Date: Tue, 20 Jan 2009 16:12:45 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: v1_9_140~12 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=aba694d9e9112867b04cd30a083cee0da5c8754f;p=fs%2Flustre-release.git Branch HEAD Fix ll_opc2str() due to new DQACQ opcode number change. i=h.huang (original patch) i=yong.fan --- diff --git a/lustre/include/lprocfs_status.h b/lustre/include/lprocfs_status.h index 7763498..f20dae2 100644 --- a/lustre/include/lprocfs_status.h +++ b/lustre/include/lprocfs_status.h @@ -222,9 +222,9 @@ static inline int opcode_offset(__u32 opc) { (LDLM_LAST_OPC - LDLM_FIRST_OPC) + (MDS_LAST_OPC - MDS_FIRST_OPC) + (OST_LAST_OPC - OST_FIRST_OPC)); - } else if (opc < FLD_LAST_OPC) { - /* FLD opcode */ - return (opc - FLD_FIRST_OPC + + } else if (opc < QUOTA_LAST_OPC) { + /* LQUOTA Opcode */ + return (opc - QUOTA_FIRST_OPC + (LLOG_LAST_OPC - LLOG_FIRST_OPC) + (OBD_LAST_OPC - OBD_FIRST_OPC) + (MGS_LAST_OPC - MGS_FIRST_OPC) + @@ -234,7 +234,7 @@ static inline int opcode_offset(__u32 opc) { } else if (opc < SEQ_LAST_OPC) { /* SEQ opcode */ return (opc - SEQ_FIRST_OPC + - (FLD_LAST_OPC - FLD_FIRST_OPC) + + (QUOTA_LAST_OPC- QUOTA_FIRST_OPC) + (LLOG_LAST_OPC - LLOG_FIRST_OPC) + (OBD_LAST_OPC - OBD_FIRST_OPC) + (MGS_LAST_OPC - MGS_FIRST_OPC) + @@ -245,19 +245,19 @@ static inline int opcode_offset(__u32 opc) { /* SEC opcode */ return (opc - SEC_FIRST_OPC + (SEQ_LAST_OPC - SEQ_FIRST_OPC) + - (FLD_LAST_OPC - FLD_FIRST_OPC) + + (QUOTA_LAST_OPC- QUOTA_FIRST_OPC) + (LLOG_LAST_OPC - LLOG_FIRST_OPC) + (OBD_LAST_OPC - OBD_FIRST_OPC) + (MGS_LAST_OPC - MGS_FIRST_OPC) + (LDLM_LAST_OPC - LDLM_FIRST_OPC) + (MDS_LAST_OPC - MDS_FIRST_OPC) + (OST_LAST_OPC - OST_FIRST_OPC)); - } else if (opc < QUOTA_LAST_OPC) { - /* LQUOTA Opcode */ - return (opc - QUOTA_FIRST_OPC + + } else if (opc < FLD_LAST_OPC) { + /* FLD opcode */ + return (opc - FLD_FIRST_OPC + (SEC_LAST_OPC - SEC_FIRST_OPC) + (SEQ_LAST_OPC - SEQ_FIRST_OPC) + - (FLD_LAST_OPC - FLD_FIRST_OPC) + + (QUOTA_LAST_OPC- QUOTA_FIRST_OPC) + (LLOG_LAST_OPC - LLOG_FIRST_OPC) + (OBD_LAST_OPC - OBD_FIRST_OPC) + (MGS_LAST_OPC - MGS_FIRST_OPC) + @@ -270,16 +270,17 @@ static inline int opcode_offset(__u32 opc) { } } -#define LUSTRE_MAX_OPCODES ((LDLM_LAST_OPC - LDLM_FIRST_OPC) + \ + +#define LUSTRE_MAX_OPCODES ((OST_LAST_OPC - OST_FIRST_OPC) + \ (MDS_LAST_OPC - MDS_FIRST_OPC) + \ - (OST_LAST_OPC - OST_FIRST_OPC) + \ - (OBD_LAST_OPC - OBD_FIRST_OPC) + \ - (FLD_LAST_OPC - FLD_FIRST_OPC) + \ - (SEQ_LAST_OPC - SEQ_FIRST_OPC) + \ + (LDLM_LAST_OPC - LDLM_FIRST_OPC) + \ (MGS_LAST_OPC - MGS_FIRST_OPC) + \ + (OBD_LAST_OPC - OBD_FIRST_OPC) + \ (LLOG_LAST_OPC - LLOG_FIRST_OPC) + \ + (QUOTA_LAST_OPC - QUOTA_FIRST_OPC) + \ + (SEQ_LAST_OPC - SEQ_FIRST_OPC) + \ (SEC_LAST_OPC - SEC_FIRST_OPC) + \ - (QUOTA_LAST_OPC - QUOTA_FIRST_OPC)) + (FLD_LAST_OPC - FLD_FIRST_OPC)) #define EXTRA_MAX_OPCODES ((PTLRPC_LAST_CNTR - PTLRPC_FIRST_CNTR) + \ (EXTRA_LAST_OPC - EXTRA_FIRST_OPC)) diff --git a/lustre/ptlrpc/lproc_ptlrpc.c b/lustre/ptlrpc/lproc_ptlrpc.c index 5c3aaca..7303382 100644 --- a/lustre/ptlrpc/lproc_ptlrpc.c +++ b/lustre/ptlrpc/lproc_ptlrpc.c @@ -117,13 +117,13 @@ struct ll_rpc_opcode { { LLOG_CATINFO, "llog_catinfo" }, { LLOG_ORIGIN_HANDLE_PREV_BLOCK, "llog_origin_handle_prev_block" }, { LLOG_ORIGIN_HANDLE_DESTROY, "llog_origin_handle_destroy" }, - { FLD_QUERY, "fld_query" }, + { QUOTA_DQACQ, "quota_acquire" }, + { QUOTA_DQREL, "quota_release" }, { SEQ_QUERY, "seq_query" }, { SEC_CTX_INIT, "sec_ctx_init" }, { SEC_CTX_INIT_CONT,"sec_ctx_init_cont" }, { SEC_CTX_FINI, "sec_ctx_fini" }, - { QUOTA_DQACQ, "quota_acquire" }, - { QUOTA_DQREL, "quota_release" } + { FLD_QUERY, "fld_query" } }; struct ll_eopcode {