/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=8:tabstop=8: * * Copyright (C) 2001, 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. * */ #include #include #include #include #include #include #include #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)) #include #endif #include #include #include #include #include #include #include #include #define DEBUG_SUBSYSTEM S_CLASS #include struct ctl_table_header *obd_table_header = NULL; #define OBD_SYSCTL 300 enum { OBD_FAIL_LOC = 1, /* control test failures instrumentation */ OBD_TIMEOUT, /* RPC timeout before recovery/intr */ OBD_DUMP_ON_TIMEOUT, /* dump kernel debug log upon eviction */ OBD_MEMUSED, /* bytes currently OBD_ALLOCated */ OBD_SYNCFILTER, /* XXX temporary, as we play with sync osts.. */ OBD_LDLM_TIMEOUT, /* LDLM timeout for ASTs before client eviction */ OBD_DUMP_ON_EVICTION, /* dump kernel debug log upon eviction */ OBD_DEBUG_PEER_ON_TIMEOUT, /* dump peer debug when RPC times out */ }; int LL_PROC_PROTO(proc_fail_loc) { int rc; int old_fail_loc = obd_fail_loc; rc = ll_proc_dointvec(table, write, filp, buffer, lenp, ppos); if (old_fail_loc != obd_fail_loc) wake_up(&obd_race_waitq); return rc; } int LL_PROC_PROTO(proc_set_timeout) { int rc; rc = ll_proc_dointvec(table, write, filp, buffer, lenp, ppos); if (ldlm_timeout >= obd_timeout) ldlm_timeout = max(obd_timeout / 3, 1U); return rc; } static ctl_table obd_table[] = { {OBD_FAIL_LOC, "fail_loc", &obd_fail_loc, sizeof(int), 0644, NULL, &proc_fail_loc}, {OBD_TIMEOUT, "timeout", &obd_timeout, sizeof(int), 0644, NULL, &proc_set_timeout}, {OBD_DEBUG_PEER_ON_TIMEOUT, "debug_peer_on_timeout", &obd_debug_peer_on_timeout, sizeof(int), 0644, NULL, &proc_dointvec}, {OBD_DUMP_ON_TIMEOUT, "dump_on_timeout", &obd_dump_on_timeout, sizeof(int), 0644, NULL, &proc_dointvec}, {OBD_DUMP_ON_EVICTION, "dump_on_eviction", &obd_dump_on_eviction, sizeof(int), 0644, NULL, &proc_dointvec}, {OBD_MEMUSED, "memused", (int *)&obd_memory.counter, sizeof(int), 0644, NULL, &proc_dointvec}, {OBD_LDLM_TIMEOUT, "ldlm_timeout", &ldlm_timeout, sizeof(int), 0644, NULL, &proc_set_timeout}, { 0 } }; static ctl_table parent_table[] = { {OBD_SYSCTL, "lustre", NULL, 0, 0555, obd_table}, {0} }; void obd_sysctl_init (void) { #ifdef CONFIG_SYSCTL if ( !obd_table_header ) obd_table_header = register_sysctl_table(parent_table, 0); #endif } void obd_sysctl_clean (void) { #ifdef CONFIG_SYSCTL if ( obd_table_header ) unregister_sysctl_table(obd_table_header); obd_table_header = NULL; #endif }