lproc_mgc.c

来自「lustre 1.6.5 source code」· C语言 代码 · 共 54 行

C
54
字号
/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=8:tabstop=8: * * Copyright (C) 2002 Cluster File Systems, Inc. * * This file is part of the Lustre file system, http://www.lustre.org * Lustre is a trademark of Cluster File Systems, Inc. * * You may have signed or agreed to another license before downloading * this software.  If so, you are bound by the terms and conditions * of that agreement, and the following does not apply to you.  See the * LICENSE file included with this distribution for more information. * * If you did not agree to a different license, then this copy of Lustre * is open source software; you can redistribute it and/or  modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. * * In either case, Lustre is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * license text for more details. * */#define DEBUG_SUBSYSTEM S_CLASS#include <linux/version.h>#include <linux/vfs.h>#include <obd_class.h>#include <lprocfs_status.h>#ifdef LPROCFSstatic struct lprocfs_vars lprocfs_mgc_obd_vars[] = {        { "uuid",            lprocfs_rd_uuid,          0, 0 },        { "ping",            0, lprocfs_wr_ping,          0 },        { "connect_flags",   lprocfs_rd_connect_flags, 0, 0 },        { "mgs_server_uuid", lprocfs_rd_server_uuid,   0, 0 },        { "mgs_conn_uuid",   lprocfs_rd_conn_uuid,     0, 0 },        { 0 }};static struct lprocfs_vars lprocfs_mgc_module_vars[] = {        { "num_refs",        lprocfs_rd_numrefs,       0, 0 },        { 0 }};void lprocfs_mgc_init_vars(struct lprocfs_static_vars *lvars){        lvars->module_vars = lprocfs_mgc_module_vars;        lvars->obd_vars    = lprocfs_mgc_obd_vars;}#endif /* LPROCFS */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?