X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Finclude%2Flinux%2Flprocfs_status.h;h=1c0234a702b823de0ced36c6e85430285a703ddd;hb=886454a8f9fb45c843865955c207b6060f1f9192;hp=4ce9a8cc1983669b6d8c813557c60f0c5b94c557;hpb=e37bdce7fd1244003eb434c73f2d0cf10cf6acc6;p=fs%2Flustre-release.git diff --git a/lustre/include/linux/lprocfs_status.h b/lustre/include/linux/lprocfs_status.h index 4ce9a8c..1c0234a 100644 --- a/lustre/include/linux/lprocfs_status.h +++ b/lustre/include/linux/lprocfs_status.h @@ -1,135 +1,66 @@ /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- * vim:expandtab:shiftwidth=8:tabstop=8: * - * Copyright (C) 2002 Cluster File Systems, Inc. + * GPL HEADER START * - * This file is part of Lustre, http://www.lustre.org. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Lustre is free 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. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 only, + * as published by the Free Software Foundation. * - * 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 - * GNU General Public License for more details. + * This program 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 GNU + * General Public License version 2 for more details (a copy is included + * in the LICENSE file that accompanied this code). * - * You should have received a copy of the GNU General Public License - * along with Lustre; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * Top level header file for LProc SNMP + * You should have received a copy of the GNU General Public License + * version 2 along with this program; If not, see + * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf + * + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, + * CA 95054 USA or visit www.sun.com if you need additional information or + * have any questions. + * + * GPL HEADER END */ -#ifndef _LPROCFS_SNMP_H -#define _LPROCFS_SNMP_H - /* -#ifndef LPROC_SNMP -#define LPROC_SNMP + * Copyright 2008 Sun Microsystems, Inc. All rights reserved + * Use is subject to license terms. + */ +/* + * This file is part of Lustre, http://www.lustre.org/ + * Lustre is a trademark of Sun Microsystems, Inc. + * + * lustre/include/linux/lprocfs_status.h + * + * Top level header file for LProc SNMP + * + * Author: Hariharan Thantry thantry@users.sourceforge.net + */ +#ifndef _LINUX_LPROCFS_SNMP_H +#define _LINUX_LPROCFS_SNMP_H + +#ifndef _LPROCFS_SNMP_H +#error Do not #include this file directly. #include instead #endif -*/ +#ifdef __KERNEL__ +#ifndef AUTOCONF_INCLUDED +#include +#endif +#include #include - - -struct lprocfs_vars{ - char* name; - read_proc_t* read_fptr; - write_proc_t* write_fptr; -}; - -#ifdef LPROC_SNMP - -struct proc_dir_entry* lprocfs_mkdir(const char* dname, - struct proc_dir_entry *parent); -struct proc_dir_entry* lprocfs_srch(struct proc_dir_entry* head, - const char* name); -void lprocfs_remove_all(struct proc_dir_entry* root); -struct proc_dir_entry* lprocfs_new_dir(struct proc_dir_entry* root, - const char* string, - const char* tok); -int lprocfs_new_vars(struct proc_dir_entry* root, - struct lprocfs_vars* list, const char* tok, void* data); - -int lprocfs_add_vars(struct proc_dir_entry* root, - struct lprocfs_vars* var, - void* data); -int lprocfs_reg_obd(struct obd_device* device, - struct lprocfs_vars* list, - void* data); -int lprocfs_dereg_obd(struct obd_device* device); -struct proc_dir_entry* lprocfs_reg_mnt(char *mnt_name); -int lprocfs_dereg_mnt(struct proc_dir_entry* root); - -int lprocfs_reg_class(struct obd_type* type, struct lprocfs_vars* list, - void* data); -int lprocfs_dereg_class(struct obd_type* class); -int lprocfs_reg_main(void); -int lprocfs_dereg_main(void); -int lprocfs_ll_rd(char *page, char **start, off_t off, int count, int *eof, - void *data); -#else - - -static inline int lprocfs_add_vars(struct proc_dir_entry* root, - struct lprocfs_vars* var, - void* data) - -{ - return 0; -} - - -static inline int lprocfs_reg_obd(struct obd_device* device, - struct lprocfs_vars* list, - void* data) -{ - return 0; -} - -static inline int lprocfs_dereg_obd(struct obd_device* device) -{ - return 0; -} - -static inline struct proc_dir_entry* lprocfs_reg_mnt(char *name) -{ - return 0; -} - -static inline int lprocfs_dereg_mnt(struct proc_dir_entry* root) -{ - return 0; -} - -static inline int lprocfs_reg_class(struct obd_type* type, - struct lprocfs_vars* list, - void* data) - -{ - return 0; -} - -static inline int lprocfs_dereg_class(struct obd_type* class) -{ - return 0; -} - -static inline int lprocfs_reg_main(void) -{ - return 0; -} - -static inline int lprocfs_dereg_main(void) -{ - return 0; -} - -static inline int lprocfs_ll_rd(char *page, char **start, off_t off, - int count, int *eof, void *data) -{ - return 0; -} -#endif /* LPROC_SNMP */ +#include +#include +#include +#include +#include +#include + +#else +# define kstatfs statfs +#endif #endif /* LPROCFS_SNMP_H */